-
-
Notifications
You must be signed in to change notification settings - Fork 139
Closed
Description
While working on the fix #975 for I found that the method used to tell when the player is ready is not being called when the user navigates to a video for the first time:
Iridium/src/firefox/js/background-inject.js
Lines 473 to 478 in dfaa5df
window.onYouTubePlayerReady = (function (original) { | |
return function (api) { | |
listeners?.forEach(listener => listener?.(api)); | |
original?.apply(this, arguments); | |
}; | |
}(window.onYouTubePlayerReady)); |
This means that any feature that only depends on this method being called (default quality, annotations control, etc.) will not be working correctly in that scenario. Will have to find a workaround for this issue.