aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2019-12-17 16:59:43 +0100
committerRigel Kent <sendmemail@rigelk.eu>2019-12-17 16:59:43 +0100
commitddefb8c9e59802e9d553839fd404d34ff5c9a776 (patch)
tree75a386079a900b25f26fa390b29e368e27b4880c /client/src
parent3bcb4fd74190aecb22c39a88772e80b223a87472 (diff)
downloadPeerTube-ddefb8c9e59802e9d553839fd404d34ff5c9a776.tar.gz
PeerTube-ddefb8c9e59802e9d553839fd404d34ff5c9a776.tar.zst
PeerTube-ddefb8c9e59802e9d553839fd404d34ff5c9a776.zip
(fix) upnext timeout set to 10s
Diffstat (limited to 'client/src')
-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 50854c592..8cc1e8b58 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.ts
+++ b/client/src/app/videos/+video-watch/video-watch.component.ts
@@ -475,7 +475,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
475 * define 'condition(next)' to return true to wait, false to stop 475 * define 'condition(next)' to return true to wait, false to stop
476 */ 476 */
477 this.player.upnext({ 477 this.player.upnext({
478 timeout: 1000000, 478 timeout: 10000, // 10s
479 headText: this.i18n('Up Next'), 479 headText: this.i18n('Up Next'),
480 cancelText: this.i18n('Cancel'), 480 cancelText: this.i18n('Cancel'),
481 getTitle: () => this.nextVideoTitle, 481 getTitle: () => this.nextVideoTitle,