aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-06-29 14:22:13 +0200
committerChocobozzz <me@florianbigard.com>2023-06-29 14:22:13 +0200
commit8ef866071f8109719e68647141d4c9e138438585 (patch)
tree3ae43b056273aebd3aca601ef7499e1d92f79740 /client/src/app/+videos
parent9cd06903f4e83b67bde8bd558374c75127a86c39 (diff)
downloadPeerTube-8ef866071f8109719e68647141d4c9e138438585.tar.gz
PeerTube-8ef866071f8109719e68647141d4c9e138438585.tar.zst
PeerTube-8ef866071f8109719e68647141d4c9e138438585.zip
Fix fetching storyboard of password protected video
Diffstat (limited to 'client/src/app/+videos')
-rw-r--r--client/src/app/+videos/+video-watch/video-watch.component.ts2
1 files changed, 1 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 43744789d..54e0649ba 100644
--- a/client/src/app/+videos/+video-watch/video-watch.component.ts
+++ b/client/src/app/+videos/+video-watch/video-watch.component.ts
@@ -287,7 +287,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
287 forkJoin([ 287 forkJoin([
288 videoAndLiveObs, 288 videoAndLiveObs,
289 this.videoCaptionService.listCaptions(videoId, videoPassword), 289 this.videoCaptionService.listCaptions(videoId, videoPassword),
290 this.videoService.getStoryboards(videoId), 290 this.videoService.getStoryboards(videoId, videoPassword),
291 this.userService.getAnonymousOrLoggedUser() 291 this.userService.getAnonymousOrLoggedUser()
292 ]).subscribe({ 292 ]).subscribe({
293 next: ([ { video, live, videoFileToken }, captionsResult, storyboards, loggedInOrAnonymousUser ]) => { 293 next: ([ { video, live, videoFileToken }, captionsResult, storyboards, loggedInOrAnonymousUser ]) => {