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

Commit 5e690319 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

parents 1c9f91c6 bd37127e
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