Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0f57cce6 authored by Fyodor Kupolov's avatar Fyodor Kupolov
Browse files

Fixed a bug with incorrect handling of onUnlockUser

userId should be passed as arg1 instead of obj.

Bug: 31321500
Change-Id: I11e8c146d83773c73ec6bb5f5cfac566759b7bcc
parent 2e8b2570
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -822,7 +822,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
        public void onUnlockUser(final @UserIdInt int userHandle) {
            // Called on ActivityManager thread.
            mService.mHandler.sendMessage(mService.mHandler.obtainMessage(MSG_SYSTEM_UNLOCK_USER,
                    userHandle));
                    userHandle /* arg1 */, 0 /* arg2 */));
        }
    }