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

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

Fix NullPointerException am: ec1d075e

am: 61d84086

* commit '61d84086':
  Fix NullPointerException
parents 736593e7 61d84086
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);
    }