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

Commit 61d84086 authored by Jorim Jaggi's avatar Jorim Jaggi Committed by android-build-merger
Browse files

Fix NullPointerException

am: ec1d075e

* commit 'ec1d075e':
  Fix NullPointerException
parents aa836177 ec1d075e
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -409,7 +409,11 @@ public class StatusBarIconController extends StatusBarIconList implements Tunabl
        if (darkArea == null && mTintArea.isEmpty()) {
            return;
        }
        if (darkArea == null) {
            mTintArea.setEmpty();
        } else {
            mTintArea.set(darkArea);
        }
        applyIconTint();
        mNotificationIconAreaController.setTintArea(darkArea);
    }