Ensure poster image is not downloaded again for HTML5 videos

This commit is contained in:
Sam Potts 2020-02-14 16:53:23 +00:00
parent 2e2c5ad72a
commit bfc541b880

View File

@ -172,6 +172,11 @@ const ui = {
// Set property synchronously to respect the call order
this.media.setAttribute('poster', poster);
// HTML5 uses native poster attribute
if (this.isHTML5) {
return Promise.resolve(poster);
}
// Wait until ui is ready
return (
ready