Skip to content

Commit

Permalink
fix(music/spoof-app-version): add missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
inotia00 authored and YT-Advanced committed Sep 14, 2023
1 parent 33ad9af commit acd7d05
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import app.revanced.patcher.data.BytecodeContext

import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.music.general.oldstylelibraryshelf.patch.OldStyleLibraryShelfPatch
import app.revanced.patches.music.navigation.sample.patch.SampleButtonPatch
import app.revanced.patches.music.utils.annotations.MusicCompatibility
import app.revanced.patches.music.utils.settings.resource.patch.SettingsPatch
import app.revanced.patches.shared.patch.versionspoof.AbstractVersionSpoofPatch
Expand All @@ -16,7 +18,13 @@ import app.revanced.util.integrations.Constants.MUSIC_MISC_PATH
@Patch
@Name("Spoof app version")
@Description("Spoof the YouTube Music client version.")
@DependsOn([SettingsPatch::class])
@DependsOn(
[
OldStyleLibraryShelfPatch::class,
SampleButtonPatch::class,
SettingsPatch::class
]
)
@MusicCompatibility

class SpoofAppVersionPatch : AbstractVersionSpoofPatch(
Expand Down

0 comments on commit acd7d05

Please sign in to comment.