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

Commit cc28a082 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add null check for app labels" into sc-dev

parents b6cea338 bdcb5259
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -236,7 +236,7 @@ public class RecentNotifyingAppsPreferenceController extends AbstractPreferenceC
            final String pkgName = app.getPackage();
            final ApplicationsState.AppEntry appEntry =
                    mApplicationsState.getEntry(app.getPackage(), app.getUserId());
            if (appEntry == null) {
            if (appEntry == null || appEntry.label == null) {
                continue;
            }