MOBILE-3320 ios: Fix video posters not displayed sometimes

main
Dani Palou 2021-06-14 08:56:44 +02:00
parent 0075a3880f
commit 4a34dab790
1 changed files with 7 additions and 0 deletions

View File

@ -277,6 +277,13 @@ export class CoreExternalContentDirective implements AfterViewInit, OnChanges {
this.loaded = false;
this.waitForLoad();
}
if (targetAttr == 'poster') {
// Setting the poster immediately doesn't display it in some cases. Set it to empty and then set the right one.
this.element.setAttribute(targetAttr, '');
await CoreUtils.nextTick();
}
this.element.setAttribute(targetAttr, finalUrl);
this.element.setAttribute('data-original-' + targetAttr, url);
}