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

Commit 7606d5e2 authored by Adam Bookatz's avatar Adam Bookatz Committed by Automerger Merge Worker
Browse files

Merge "[Bugfix]check whitelisted packages exclude nonsystem app" am: bd37127e am: 5e690319

parents c59d9a69 5e690319
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -222,7 +222,7 @@ class UserSystemPackageInstaller {
            final Set<String> userAllowlist = getInstallablePackagesForUserId(userId);

            pmInt.forEachPackageState(packageState -> {
                if (packageState.getPkg() == null) {
                if (packageState.getPkg() == null || !packageState.isSystem()) {
                    return;
                }
                boolean install = (userAllowlist == null