From bef489cba4101498f7f62377cddc121a45c47947 Mon Sep 17 00:00:00 2001 From: PeachesMLG Date: Mon, 27 Oct 2025 15:47:11 -0400 Subject: [PATCH] Backport pull request #7245 from jellyfin-web/release-10.11.z Fixed issue where waiting event is not being called correctly Original-merge: 0989a3034f7178cfe641b00be13498d00dfdd6c0 Merged-by: thornbill Backported-by: Joshua M. Boniface --- src/plugins/htmlVideoPlayer/plugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/htmlVideoPlayer/plugin.js b/src/plugins/htmlVideoPlayer/plugin.js index 1dee23e6e..276a76797 100644 --- a/src/plugins/htmlVideoPlayer/plugin.js +++ b/src/plugins/htmlVideoPlayer/plugin.js @@ -1064,9 +1064,9 @@ export class HtmlVideoPlayer { Events.trigger(this, 'pause'); }; - onWaiting() { + onWaiting = () => { Events.trigger(this, 'waiting'); - } + }; /** * @private