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

Commit 5a93eb3b authored by Samuel Fufa's avatar Samuel Fufa
Browse files

Fix NPE on app launch log

Bug: 149969889
Change-Id: I60fd283ac082fab1ebf6ea90568e054525c414cc
parent 97794050
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@ public class UserEventDispatcher implements ResourceBasedOverride {
            fillIntentInfo(event.srcTarget[0], intent, userHandle);
        }
        ItemInfo info = (ItemInfo) v.getTag();
        if (Utilities.IS_DEBUG_DEVICE && FeatureFlags.ENABLE_HYBRID_HOTSEAT.get()) {
        if (info != null && Utilities.IS_DEBUG_DEVICE && FeatureFlags.ENABLE_HYBRID_HOTSEAT.get()) {
            FileLog.d(TAG, "appLaunch: packageName:" + info.getTargetComponent().getPackageName()
                    + ",isWorkApp:" + (info.user != null && !Process.myUserHandle().equals(
                    userHandle)) + ",launchLocation:" + info.container);