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

Commit 89e93c97 authored by Amith Yamasani's avatar Amith Yamasani Committed by Android Git Automerger
Browse files

am 7a1c4cdf: Fix check for multiple users

* commit '7a1c4cdf':
  Fix check for multiple users
parents eabe82d0 7a1c4cdf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -491,7 +491,7 @@ public class InstalledAppDetails extends Fragment
            showIt = false;
        } else if (UserHandle.myUserId() != 0) {
            showIt = false;
        } else if (mUserManager.getUsers().size() < 1) {
        } else if (mUserManager.getUsers().size() < 2) {
            showIt = false;
        }
        menu.findItem(UNINSTALL_ALL_USERS_MENU).setVisible(showIt);