Fixing YT SABR fresh session load issue#334
Merged
Merged
Conversation
As discovered by AdGuards team, the original SABR fix did not resolve the video load in all cases. In fact, it would not work at all in AdGuard. This is suspected to be a server side delay enforced, essentially ignoring our patched backoff. To get around this, if we detect the server side delay, we can force a new session with our patched backoff. This will force Youtube to use our patched backoff instead of their server side delay.
The YT premium check now occurs after the page has been fully loaded. Before, it was attempting to check before the DOM was loaded and therefore would always fail. The check now occurs when determining if we need to patch the ad backoff
ryanbr
approved these changes
Jun 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As discovered by AdGuards team, the original SABR fix did not resolve the video load in all cases. In fact, it would not work at all in AdGuard. This is suspected to be a server side delay enforced, essentially ignoring our patched backoff. To get around this, if we detect the server side delay, we can force a new session with our patched backoff. This will force Youtube to use our patched backoff instead of their server side delay.
Also, the position of the YT Premium check has changed. Before, it was running before the page was fully loaded and would always return false. Now, it runs only when the video starts loading and will return correctly based on the user's Premium status.