aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-02-02 11:16:23 +0100
committerChocobozzz <me@florianbigard.com>2022-02-02 11:26:18 +0100
commitc4207f978e23c77f09c4646b940dfd532281300f (patch)
treeb11f459839dced708a80f6cff5d57e49ecf45917 /client/src/app
parentb25fdc73fdf22896093e12c51bb64160c0410879 (diff)
downloadPeerTube-c4207f978e23c77f09c4646b940dfd532281300f.tar.gz
PeerTube-c4207f978e23c77f09c4646b940dfd532281300f.tar.zst
PeerTube-c4207f978e23c77f09c4646b940dfd532281300f.zip
Fast forward on HLS decode error
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/+videos/+video-watch/video-watch.component.ts8
1 files changed, 5 insertions, 3 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 1ee18f52f..1f45c4d26 100644
--- a/client/src/app/+videos/+video-watch/video-watch.component.ts
+++ b/client/src/app/+videos/+video-watch/video-watch.component.ts
@@ -33,7 +33,6 @@ import {
33 VideoPrivacy, 33 VideoPrivacy,
34 VideoState 34 VideoState
35} from '@shared/models' 35} from '@shared/models'
36import { cleanupVideoWatch, getStoredTheater, getStoredVideoWatchHistory } from '../../../assets/player/peertube-player-local-storage'
37import { 36import {
38 CustomizationOptions, 37 CustomizationOptions,
39 P2PMediaLoaderOptions, 38 P2PMediaLoaderOptions,
@@ -41,7 +40,8 @@ import {
41 PeertubePlayerManagerOptions, 40 PeertubePlayerManagerOptions,
42 PlayerMode, 41 PlayerMode,
43 videojs 42 videojs
44} from '../../../assets/player/peertube-player-manager' 43} from '../../../assets/player'
44import { cleanupVideoWatch, getStoredTheater, getStoredVideoWatchHistory } from '../../../assets/player/peertube-player-local-storage'
45import { environment } from '../../../environments/environment' 45import { environment } from '../../../environments/environment'
46import { VideoWatchPlaylistComponent } from './shared' 46import { VideoWatchPlaylistComponent } from './shared'
47 47
@@ -612,7 +612,9 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
612 videoCaptions: playerCaptions, 612 videoCaptions: playerCaptions,
613 613
614 videoShortUUID: video.shortUUID, 614 videoShortUUID: video.shortUUID,
615 videoUUID: video.uuid 615 videoUUID: video.uuid,
616
617 errorNotifier: (message: string) => this.notifier.error(message)
616 }, 618 },
617 619
618 webtorrent: { 620 webtorrent: {