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

Commit 2390ec2e authored by Jorim Jaggi's avatar Jorim Jaggi
Browse files

Check for null when updating header

Test: Boot device, go to recents, scroll
Change-Id: I11935ac9931cd443a82229bbc295ace8ffc9a095
Fixes: 36531669
parent de95d544
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -524,7 +524,7 @@ public class TaskViewHeader extends FrameLayout
     * changes.
     */
    public void onTaskDataLoaded() {
        if (mTask.icon != null) {
        if (mTask != null && mTask.icon != null) {
            mIconView.setImageDrawable(mTask.icon);
        }
    }