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

Commit 76665a64 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Add null check after getApplicationInfo in InstantAppNotifier" am: 56d6691e am: f5d40d9a

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1890539

Change-Id: If2b940c67264da914200d4dba6bc188134ad7733
parents 21e85559 f5d40d9a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -234,7 +234,7 @@ public class InstantAppNotifier extends SystemUI
                ApplicationInfo appInfo =
                        pm.getApplicationInfo(
                                pkg, PackageManager.MATCH_UNINSTALLED_PACKAGES, info.userId);
                if (appInfo.isInstantApp()) {
                if (appInfo != null && appInfo.isInstantApp()) {
                    postInstantAppNotif(
                            pkg,
                            info.userId,