diff options
author | Chocobozzz <me@florianbigard.com> | 2022-02-02 11:16:23 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-02-02 11:26:18 +0100 |
commit | c4207f978e23c77f09c4646b940dfd532281300f (patch) | |
tree | b11f459839dced708a80f6cff5d57e49ecf45917 /client/src/app | |
parent | b25fdc73fdf22896093e12c51bb64160c0410879 (diff) | |
download | PeerTube-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.ts | 8 |
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' |
36 | import { cleanupVideoWatch, getStoredTheater, getStoredVideoWatchHistory } from '../../../assets/player/peertube-player-local-storage' | ||
37 | import { | 36 | import { |
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' |
44 | import { cleanupVideoWatch, getStoredTheater, getStoredVideoWatchHistory } from '../../../assets/player/peertube-player-local-storage' | ||
45 | import { environment } from '../../../environments/environment' | 45 | import { environment } from '../../../environments/environment' |
46 | import { VideoWatchPlaylistComponent } from './shared' | 46 | import { 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: { |