aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-05-25 15:27:43 +0200
committerChocobozzz <me@florianbigard.com>2021-05-25 15:27:43 +0200
commitceb8f322118b24508abc6dd0bc6813a43610eff3 (patch)
tree64b6643b63ed6a3418ad2c8dfe098e0115b8f0aa /client/src/app/+videos/+video-watch
parentd11eae7edc1339e8e6791d63176613c6f283f995 (diff)
downloadPeerTube-ceb8f322118b24508abc6dd0bc6813a43610eff3.tar.gz
PeerTube-ceb8f322118b24508abc6dd0bc6813a43610eff3.tar.zst
PeerTube-ceb8f322118b24508abc6dd0bc6813a43610eff3.zip
Fix live ending banner
Diffstat (limited to 'client/src/app/+videos/+video-watch')
-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 1c510d6b0..116139d47 100644
--- a/client/src/app/+videos/+video-watch/video-watch.component.ts
+++ b/client/src/app/+videos/+video-watch/video-watch.component.ts
@@ -674,7 +674,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
674 674
675 this.player.one('ended', () => { 675 this.player.one('ended', () => {
676 if (this.video.isLive) { 676 if (this.video.isLive) {
677 this.video.state.id = VideoState.LIVE_ENDED 677 this.zone.run(() => this.video.state.id = VideoState.LIVE_ENDED)
678 } 678 }
679 }) 679 })
680 680