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

Commit d4899cfc authored by Android Build Merger (Role)'s avatar Android Build Merger (Role)
Browse files

[automerger] Handle null small icon am: 207f7d7f

Change-Id: I2003fe3d654829f8a2d1d16a38213cf5a262650f
parents 271e219e 207f7d7f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ public class NotificationInfo implements View.OnClickListener {
        if (icon == null) {
            // Use the small icon.
            icon = notification.getSmallIcon();
            mIconDrawable = icon.loadDrawable(context);
            mIconDrawable = icon == null ? null : icon.loadDrawable(context);
            mIconColor = statusBarNotification.getNotification().color;
            mIsIconLarge = false;
        } else {