Skip to content

Commit

Permalink
Update ActivityRecord.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Nep-Timeline committed Sep 9, 2024
1 parent 9f408ec commit 6f1b0d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class ActivityRecord {
public ActivityRecord(Object instance) {
this.instance = instance;
this.packageName = (String) XposedHelpers.getObjectField(instance, "packageName");
this.userId = XposedHelpers.getIntField(instance, "userId");
this.userId = XposedHelpers.getIntField(instance, "mUserId");
this.token = (IBinder) XposedHelpers.getObjectField(instance, "token");
}

Expand Down

0 comments on commit 6f1b0d8

Please sign in to comment.