Skip to content

Commit 2af98db

Browse files
committed
fix client id hook
1 parent 876f7ce commit 2af98db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ android {
1414
applicationId = "io.github.juby210.swiftbackupprem"
1515
minSdk = 27
1616
targetSdk = 34
17-
versionCode = 201
18-
versionName = "2.0.1"
17+
versionCode = 202
18+
versionName = "2.0.2"
1919
}
2020

2121
buildTypes {

app/src/main/java/io/github/juby210/swiftbackupprem/Module.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public void beforeHookedMethod(MethodHookParam param) throws Throwable {
104104
if (classClientId != null) {
105105
XposedBridge.hookMethod(classClientId.getDeclaredMethod("f", boolean.class), new XC_MethodHook() {
106106
public void beforeHookedMethod(MethodHookParam param) throws Throwable {
107-
var clientId = c.getDeclaredField("c");
107+
var clientId = classClientId.getDeclaredField("c");
108108
clientId.setAccessible(true);
109109
clientId.set(null, prefs.getClientId());
110110
}

0 commit comments

Comments
 (0)