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

Commit 2069fe78 authored by Tony Wickham's avatar Tony Wickham Committed by Android (Google) Code Review
Browse files

Merge "Handle null small icon" into ub-launcher3-dorval-polish2

parents 6a816b00 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 {