feat(YouTube): Support version 20.07.39 (#4677)

This commit is contained in:
LisoUseInAIKyrios 2025-03-28 17:49:12 +01:00 committed by GitHub
parent f191ab63fd
commit c1379f6e52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
127 changed files with 877 additions and 598 deletions

View file

@ -122,6 +122,21 @@ public class SpoofVideoStreamsPatch {
return false;
}
/**
* Injection point.
* Turns off a feature flag that interferes with video playback.
*/
public static boolean usePlaybackStartFeatureFlag(boolean original) {
if (original) {
Logger.printDebug(() -> "usePlaybackStartFeatureFlag is set on");
}
if (!SPOOF_STREAMING_DATA) {
return original;
}
return false;
}
/**
* Injection point.
*/