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

Commit 08404a95 authored by Michal Karpinski's avatar Michal Karpinski
Browse files

Fix NPE in LauncherAppsService.shouldShowHiddenApp()

Bug: 119553859
Change-Id: Ia5d701e6bfb786346072be21938996e6c645339c
parent c02d7be1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -362,7 +362,7 @@ public class LauncherAppsService extends SystemService {
        }

        private static boolean shouldShowHiddenApp(ApplicationInfo appInfo) {
            if (appInfo.isSystemApp() || appInfo.isUpdatedSystemApp()) {
            if (appInfo == null || appInfo.isSystemApp() || appInfo.isUpdatedSystemApp()) {
                return false;
            }
            return true;