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

Commit 4b8014c1 authored by Antonio Kantek's avatar Antonio Kantek Committed by Android (Google) Code Review
Browse files

Merge "Add null check in handleShellCommandResetInputMethod" into main

parents aed53697 b5b90d9c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6456,8 +6456,8 @@ public final class InputMethodManagerService implements IInputMethodManagerImpl.
                        continue;
                    }
                    // Skip on headless user
                    if (USER_TYPE_SYSTEM_HEADLESS.equals(
                            mUserManagerInternal.getUserInfo(userId).userType)) {
                    final var userInfo = mUserManagerInternal.getUserInfo(userId);
                    if (userInfo != null && USER_TYPE_SYSTEM_HEADLESS.equals(userInfo.userType)) {
                        continue;
                    }
                    final String nextIme;