Skip to content

Commit

Permalink
Add Titan / NetTV to supportsTranscoding Logic
Browse files Browse the repository at this point in the history
  • Loading branch information
jaruba committed Jan 15, 2025
1 parent b88de0b commit 151dfe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/supportsTranscoding.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var platform = require('./platform');

function supportsTranscoding() {
if (['Tizen', 'webOS'].includes(platform.get()) || typeof window.qt !== 'undefined') {
if (['Tizen', 'webOS', 'Titan', 'NetTV'].includes(platform.get()) || typeof window.qt !== 'undefined') {
return Promise.resolve(false);
}
return Promise.resolve(true);
Expand Down

0 comments on commit 151dfe8

Please sign in to comment.