Skip to content

Commit 94b4eab

Browse files
committed
Check for Both Titan and NetTV
1 parent e19130c commit 94b4eab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/StremioVideo/selectVideoImplementation.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function selectVideoImplementation(commandArgs, options) {
3838
if (commandArgs.platform === 'webOS') {
3939
return withStreamingServer(withHTMLSubtitles(WebOsVideo));
4040
}
41-
if (commandArgs.platform === 'TitanOS') {
41+
if (commandArgs.platform === 'Titan' || commandArgs.platform === 'NetTV') {
4242
return withStreamingServer(withHTMLSubtitles(TitanVideo));
4343
}
4444
return withStreamingServer(withHTMLSubtitles(HTMLVideo));
@@ -51,7 +51,7 @@ function selectVideoImplementation(commandArgs, options) {
5151
if (commandArgs.platform === 'webOS') {
5252
return withVideoParams(withHTMLSubtitles(WebOsVideo));
5353
}
54-
if (commandArgs.platform === 'TitanOS') {
54+
if (commandArgs.platform === 'Titan' || commandArgs.platform === 'NetTV') {
5555
return withVideoParams(withHTMLSubtitles(TitanVideo));
5656
}
5757
return withVideoParams(withHTMLSubtitles(HTMLVideo));

0 commit comments

Comments
 (0)