diff --git a/src/main/kotlin/app/revanced/patches/music/utils/settings/bytecode/patch/SettingsBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/music/utils/settings/bytecode/patch/SettingsBytecodePatch.kt index 75213b78b..b6d62cc61 100644 --- a/src/main/kotlin/app/revanced/patches/music/utils/settings/bytecode/patch/SettingsBytecodePatch.kt +++ b/src/main/kotlin/app/revanced/patches/music/utils/settings/bytecode/patch/SettingsBytecodePatch.kt @@ -48,7 +48,7 @@ class SettingsBytecodePatch : BytecodePatch( } } ?: throw PreferenceFingerprint.exception - context.injectInit("FirstRun", "initializationRVX", false) + context.injectInit("InitializationPatch", "initializeReVancedSettings", false) } diff --git a/src/main/kotlin/app/revanced/patches/youtube/utils/settings/bytecode/patch/SettingsBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/utils/settings/bytecode/patch/SettingsBytecodePatch.kt index 1fa0d377e..4df04833b 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/utils/settings/bytecode/patch/SettingsBytecodePatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/utils/settings/bytecode/patch/SettingsBytecodePatch.kt @@ -43,7 +43,7 @@ class SettingsBytecodePatch : BytecodePatch( } } ?: throw ThemeSetterSystemFingerprint.exception - context.injectInit("FirstRun", "initializationRVX", true) + context.injectInit("InitializationPatch", "initializeReVancedSettings", true) } diff --git a/src/main/kotlin/app/revanced/patches/youtube/utils/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt b/src/main/kotlin/app/revanced/patches/youtube/utils/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt index 06384d421..9a68fea10 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/utils/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/utils/sponsorblock/bytecode/patch/SponsorBlockBytecodePatch.kt @@ -222,7 +222,7 @@ class SponsorBlockBytecodePatch : BytecodePatch( */ VideoIdWithoutShortsPatch.injectCall("$INTEGRATIONS_PLAYER_CONTROLLER_CLASS_DESCRIPTOR->setCurrentVideoId(Ljava/lang/String;)V") - context.injectInit("FirstRun", "initializationSB", true) + context.injectInit("InitializationPatch", "initializeSponsorBlockSettings", true) }