Skip to content

Commit

Permalink
Fix apps using pre-11 API are broken
Browse files Browse the repository at this point in the history
  • Loading branch information
RikkaW committed Feb 2, 2023
1 parent 27c15f5 commit 37b8ee1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void attachApplication(IShizukuApplication application, Bundle args) {

isManager = MANAGER_APPLICATION_ID.equals(requestPackageName);

if (!isManager && clientManager.findClient(callingUid, callingPid) == null) {
if (clientManager.findClient(callingUid, callingPid) == null) {
synchronized (this) {
clientRecord = clientManager.addClient(callingUid, callingPid, application, requestPackageName, apiVersion);
}
Expand Down

0 comments on commit 37b8ee1

Please sign in to comment.