Skip to content

Commit f5f6f5e

Browse files
committed
Lint
1 parent e2f2253 commit f5f6f5e

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/StremioVideo/selectVideoImplementation.js

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ function selectVideoImplementation(commandArgs, options) {
3939
return withStreamingServer(withHTMLSubtitles(WebOsVideo));
4040
}
4141
if (commandArgs.platform === 'Titan' || commandArgs.platform === 'NetTV') {
42-
console.log('selectVideoImplementation using Titan Player with server');
4342
return withStreamingServer(withHTMLSubtitles(TitanVideo));
4443
}
4544
return withStreamingServer(withHTMLSubtitles(HTMLVideo));

src/TitanVideo/TitanVideo.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ function TitanVideo(options) {
537537
onPropChanged('subtitlesTracks');
538538
onPropChanged('selectedSubtitlesTrackId');
539539
});
540-
}
540+
};
541541
}
542542
if (videoElement.audioTracks) {
543543
videoElement.audioTracks.onaddtrack = function() {
@@ -546,7 +546,7 @@ function TitanVideo(options) {
546546
onPropChanged('audioTracks');
547547
onPropChanged('selectedAudioTrackId');
548548
});
549-
}
549+
};
550550
}
551551
videoElement.src = stream.url;
552552
} else {

src/withHTMLSubtitles/withHTMLSubtitles.js

-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,6 @@ function withHTMLSubtitles(Video) {
266266
}));
267267
});
268268
}
269-
console.log('selectedTrack', selectedTrack);
270269
loadSubtitleFromUrl(selectedTrack.url);
271270
}
272271
renderSubtitles();

0 commit comments

Comments
 (0)