From f88b3a5162460b86cf1c2a522bf102ed70e40312 Mon Sep 17 00:00:00 2001 From: LisoUseInAIKyrios <118716522+LisoUseInAIKyrios@users.noreply.github.com> Date: Tue, 16 Sep 2025 15:40:55 +0400 Subject: [PATCH] refactor(YouTube - Spoof video streams): Adjust preferred client order --- .../youtube/patches/spoof/SpoofVideoStreamsPatch.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/SpoofVideoStreamsPatch.java b/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/SpoofVideoStreamsPatch.java index 5e786afea..6cd8212fb 100644 --- a/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/SpoofVideoStreamsPatch.java +++ b/extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/spoof/SpoofVideoStreamsPatch.java @@ -21,9 +21,10 @@ public class SpoofVideoStreamsPatch { public static void setClientOrderToUse() { List availableClients = List.of( ANDROID_VR_1_61_48, - ANDROID_CREATOR, VISIONOS, IPADOS, + // Creator must be next to last, because livestreams fetch successfully but don't playback. + ANDROID_CREATOR, // VR 1.43 must be last as spoof streaming data handles it slightly differently. ANDROID_VR_1_43_32 );