We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4c3dac commit 5150a15Copy full SHA for 5150a15
src/main/kotlin/app/revanced/patches/youtube/misc/fix/playback/SpoofVideoStreamsPatch.kt
@@ -254,7 +254,9 @@ object SpoofVideoStreamsPatch : BytecodePatch(
254
// endregion
255
256
// region Remove /videoplayback request body to fix playback.
257
- // This is needed when using iOS client as streaming data source.
+ // It is assumed, YouTube makes a request with a body tuned for Android.
258
+ // Requesting streams intended for other platforms with a body tuned for Android could be the cause of 400 errors.
259
+ // A proper fix may include modifying the request body to match the platforms expected body.
260
261
BuildMediaDataSourceFingerprint.resultOrThrow().let {
262
it.mutableMethod.apply {
0 commit comments