Unneeded else has been removed within the play() method.

This commit is contained in:
Arthur Hulsman 2018-03-09 13:21:19 +01:00
parent ba8d7831a7
commit 7adc2bc6c8

View File

@ -316,9 +316,9 @@ class Plyr {
}).catch(() => { }).catch(() => {
this.media.play(); this.media.play();
}); });
} else {
return this.media.play();
} }
return this.media.play();
} }
/** /**