Fix autoplay

This commit is contained in:
Omar Roth 2018-11-27 16:52:27 -06:00
parent 6540742c76
commit 7ab9d741bf
1 changed files with 5 additions and 8 deletions

View File

@ -338,14 +338,11 @@ if (bpb) {
player.ready(function() {
var promise = player.play();
if (promise === undefined) {
bpb.show();
} else {
promise.then(function() {
bpb.show();
}, function() {
bpb.show();
});
if (promise !== undefined) {
promise.then(_ => {
}).catch(error => {
bpb.show();
});
}
});
}