From 94b4eab64dd34c5969b05830070a8960b1ac30b0 Mon Sep 17 00:00:00 2001 From: Alexandru Branza Date: Wed, 15 Jan 2025 12:04:43 +0200 Subject: [PATCH] Check for Both Titan and NetTV --- src/StremioVideo/selectVideoImplementation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/StremioVideo/selectVideoImplementation.js b/src/StremioVideo/selectVideoImplementation.js index 2478590..09ad141 100644 --- a/src/StremioVideo/selectVideoImplementation.js +++ b/src/StremioVideo/selectVideoImplementation.js @@ -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)); @@ -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));