Skip to content

Commit

Permalink
Check for Both Titan and NetTV
Browse files Browse the repository at this point in the history
  • Loading branch information
jaruba committed Jan 15, 2025
1 parent e19130c commit 94b4eab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/StremioVideo/selectVideoImplementation.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function selectVideoImplementation(commandArgs, options) {
if (commandArgs.platform === 'webOS') {
return withStreamingServer(withHTMLSubtitles(WebOsVideo));
}
if (commandArgs.platform === 'TitanOS') {
if (commandArgs.platform === 'Titan' || commandArgs.platform === 'NetTV') {
return withStreamingServer(withHTMLSubtitles(TitanVideo));
}
return withStreamingServer(withHTMLSubtitles(HTMLVideo));
Expand All @@ -51,7 +51,7 @@ function selectVideoImplementation(commandArgs, options) {
if (commandArgs.platform === 'webOS') {
return withVideoParams(withHTMLSubtitles(WebOsVideo));
}
if (commandArgs.platform === 'TitanOS') {
if (commandArgs.platform === 'Titan' || commandArgs.platform === 'NetTV') {
return withVideoParams(withHTMLSubtitles(TitanVideo));
}
return withVideoParams(withHTMLSubtitles(HTMLVideo));
Expand Down

0 comments on commit 94b4eab

Please sign in to comment.