Skip to content

Commit 09b941a

Browse files
author
LisoUseInAIKyrios
committed
fix: Resolve patching with dev branch
1 parent 678ef40 commit 09b941a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

patches/src/main/kotlin/app/revanced/patches/music/misc/spoof/SpoofVideoStreams.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package app.revanced.patches.music.misc.spoof
22

3+
import app.revanced.patches.music.misc.extension.sharedExtensionPatch
34
import app.revanced.patches.music.playservice.is_7_33_or_greater
45
import app.revanced.patches.music.playservice.is_8_11_or_greater
56
import app.revanced.patches.music.playservice.is_8_15_or_greater
@@ -14,7 +15,7 @@ val spoofVideoStreamsPatch = spoofVideoStreamsPatch(
1415
)
1516
)
1617

17-
dependsOn(versionCheckPatch, userAgentClientSpoofPatch)
18+
dependsOn(sharedExtensionPatch, versionCheckPatch, userAgentClientSpoofPatch)
1819
},
1920
fixMediaFetchHotConfigChanges = { true },
2021
fixMediaFetchHotConfigAlternativeChanges = { is_8_11_or_greater && !is_8_15_or_greater },

patches/src/main/kotlin/app/revanced/patches/shared/misc/spoof/SpoofVideoStreamsPatch.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fun spoofVideoStreamsPatch(
4343
) {
4444
block()
4545

46-
dependsOn(sharedExtensionPatch, addResourcesPatch)
46+
dependsOn(addResourcesPatch)
4747

4848
execute {
4949
// region Enable extension helper method used by other patches

0 commit comments

Comments
 (0)