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

Commit fd361c5e authored by Beverly's avatar Beverly
Browse files

Fix NPE on dozeTimeTIck

Fixes: 181825103
Test: manual
Change-Id: Iaca1a78aaee647f102fd45042d31db1d551e1f01
parent adb49c9c
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -231,6 +231,9 @@ public class UdfpsController implements DozeReceiver, HbmCallback {

    @Override
    public void dozeTimeTick() {
        if (mView == null) {
            return;
        }
        mView.dozeTimeTick();
    }