From 255c00b1837c6e2f05aef397a1410b26187fd504 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 15 Dec 2025 12:28:53 +0100 Subject: [PATCH] chore: Fix minor syntax error --- .../misc/bypassVersionCheck/DisableVersionCheckPatch.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/src/main/kotlin/app/revanced/patches/lightroom/misc/bypassVersionCheck/DisableVersionCheckPatch.kt b/patches/src/main/kotlin/app/revanced/patches/lightroom/misc/bypassVersionCheck/DisableVersionCheckPatch.kt index 0e4345654..9d23b7716 100644 --- a/patches/src/main/kotlin/app/revanced/patches/lightroom/misc/bypassVersionCheck/DisableVersionCheckPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/lightroom/misc/bypassVersionCheck/DisableVersionCheckPatch.kt @@ -16,8 +16,8 @@ val disableVersionCheckPatch = bytecodePatch( val igetIndex = refreshRemoteConfigurationFingerprint.patternMatch!!.endIndex // This value represents the server command to clear all version restrictions. - const val STATUS_FORCE_RESET_HEX = "-0x2"; - replaceInstruction(igetIndex, "const/4 v1, $STATUS_FORCE_RESET_HEX") + val statusForceReset = "-0x2"; + replaceInstruction(igetIndex, "const/4 v1, $statusForceReset") } } }