(fix) upnext timeout set to 10s

This commit is contained in:
Rigel Kent
2019-12-17 16:59:43 +01:00
parent 3bcb4fd741
commit ddefb8c9e5
@@ -475,7 +475,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
* define 'condition(next)' to return true to wait, false to stop
*/
this.player.upnext({
timeout: 1000000,
timeout: 10000, // 10s
headText: this.i18n('Up Next'),
cancelText: this.i18n('Cancel'),
getTitle: () => this.nextVideoTitle,