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

Commit ac332480 authored by Jeff DeCew's avatar Jeff DeCew
Browse files

Don't let `ActiveNotificationModel.appName` be null

Fixes: 406608685
Test: presubmit
Flag: EXEMPT bugfix
Change-Id: Ida5384997100707fdd7afb1b407b3e3883676691
parent d645fe6b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -166,7 +166,7 @@ private class ActiveNotificationsStoreBuilder(
            statusBarChipIconView = icons.statusBarChipIcon,
            uid = sbn.uid,
            packageName = sbn.packageName,
            appName = sbn.notification.loadHeaderAppName(context),
            appName = sbn.notification.loadHeaderAppName(context) ?: "",
            contentIntent = sbn.notification.contentIntent,
            instanceId = sbn.instanceId,
            isGroupSummary = sbn.notification.isGroupSummary,