mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2023-06-08.git
synced 2024-08-15 00:53:38 +00:00
Fix autoplay
This commit is contained in:
parent
6540742c76
commit
7ab9d741bf
1 changed files with 5 additions and 8 deletions
|
@ -338,14 +338,11 @@ if (bpb) {
|
||||||
player.ready(function() {
|
player.ready(function() {
|
||||||
var promise = player.play();
|
var promise = player.play();
|
||||||
|
|
||||||
if (promise === undefined) {
|
if (promise !== undefined) {
|
||||||
bpb.show();
|
promise.then(_ => {
|
||||||
} else {
|
}).catch(error => {
|
||||||
promise.then(function() {
|
bpb.show();
|
||||||
bpb.show();
|
});
|
||||||
}, function() {
|
|
||||||
bpb.show();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue