Backport pull request #7245 from jellyfin-web/release-10.11.z

Fixed issue where waiting event is not being called correctly

Original-merge: 0989a3034f

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
PeachesMLG
2025-10-27 15:47:11 -04:00
committed by Joshua M. Boniface
parent 1d02d2e9d2
commit bef489cba4

View File

@@ -1064,9 +1064,9 @@ export class HtmlVideoPlayer {
Events.trigger(this, 'pause');
};
onWaiting() {
onWaiting = () => {
Events.trigger(this, 'waiting');
}
};
/**
* @private