1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Reset media source

This commit is contained in:
Dmitry Lyzo 2021-09-17 01:20:58 +03:00
parent a7dce35fae
commit 2af0b91dad
3 changed files with 11 additions and 3 deletions

View file

@ -185,6 +185,12 @@ import { Events } from 'jellyfin-apiclient';
return Promise.resolve();
}
export function resetSrc(elem) {
elem.src = '';
elem.innerHTML = '';
elem.removeAttribute('src');
}
function onSuccessfulPlay(elem, onErrorFn) {
elem.addEventListener('error', onErrorFn);
}
@ -344,9 +350,7 @@ import { Events } from 'jellyfin-apiclient';
export function onEndedInternal(instance, elem, onErrorFn) {
elem.removeEventListener('error', onErrorFn);
elem.src = '';
elem.innerHTML = '';
elem.removeAttribute('src');
resetSrc(elem);
destroyHlsPlayer(instance);
destroyFlvPlayer(instance);