diff options
Diffstat (limited to 'client/src/app/videos')
-rw-r--r-- | client/src/app/videos/+video-watch/video-watch.component.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.ts b/client/src/app/videos/+video-watch/video-watch.component.ts index 0532e7de7..b147b75b0 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.ts +++ b/client/src/app/videos/+video-watch/video-watch.component.ts | |||
@@ -423,7 +423,15 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
423 | } | 423 | } |
424 | } | 424 | } |
425 | 425 | ||
426 | const mode: PlayerMode = urlOptions.playerMode === 'p2p-media-loader' ? 'p2p-media-loader' : 'webtorrent' | 426 | let mode: PlayerMode |
427 | |||
428 | if (urlOptions.playerMode) { | ||
429 | if (urlOptions.playerMode === 'p2p-media-loader') mode = 'p2p-media-loader' | ||
430 | else mode = 'webtorrent' | ||
431 | } else { | ||
432 | if (this.video.hasHlsPlaylist()) mode = 'p2p-media-loader' | ||
433 | else mode = 'webtorrent' | ||
434 | } | ||
427 | 435 | ||
428 | if (mode === 'p2p-media-loader') { | 436 | if (mode === 'p2p-media-loader') { |
429 | const hlsPlaylist = this.video.getHlsPlaylist() | 437 | const hlsPlaylist = this.video.getHlsPlaylist() |