mirror of
https://github.com/iv-org/invidious.git
synced 2025-05-31 14:11:54 +05:30
Fix autoplay
This commit is contained in:
@@ -338,12 +338,9 @@ if (bpb) {
|
||||
player.ready(function() {
|
||||
var promise = player.play();
|
||||
|
||||
if (promise === undefined) {
|
||||
bpb.show();
|
||||
} else {
|
||||
promise.then(function() {
|
||||
bpb.show();
|
||||
}, function() {
|
||||
if (promise !== undefined) {
|
||||
promise.then(_ => {
|
||||
}).catch(error => {
|
||||
bpb.show();
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user