Skip to content

Commit 151dfe8

Browse files
committed
Add Titan / NetTV to supportsTranscoding Logic
1 parent b88de0b commit 151dfe8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/supportsTranscoding.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var platform = require('./platform');
22

33
function supportsTranscoding() {
4-
if (['Tizen', 'webOS'].includes(platform.get()) || typeof window.qt !== 'undefined') {
4+
if (['Tizen', 'webOS', 'Titan', 'NetTV'].includes(platform.get()) || typeof window.qt !== 'undefined') {
55
return Promise.resolve(false);
66
}
77
return Promise.resolve(true);

0 commit comments

Comments
 (0)