mirror of
https://github.com/iv-org/invidious
synced 2024-11-09 01:10:27 +00:00
Fix autoplay
This commit is contained in:
parent
6540742c76
commit
7ab9d741bf
@ -338,12 +338,9 @@ 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();
|
|
||||||
}, function() {
|
|
||||||
bpb.show();
|
bpb.show();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user