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

Commit 2ade51b5 authored by Ng Zhi An's avatar Ng Zhi An
Browse files

Check mKeyguardUserSwitcher for null

Bug: 65397789
Change-Id: Iaae968fae65182681492f635e9b09a4d15dcf897
Fixes: 65397789
Test: manual
parent 57d42ed0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4788,7 +4788,7 @@ public class StatusBar extends SystemUI implements DemoMode,
            animateCollapsePanels();
            return true;
        }
        if (mKeyguardUserSwitcher.hideIfNotSimple(true)) {
        if (mKeyguardUserSwitcher != null && mKeyguardUserSwitcher.hideIfNotSimple(true)) {
            return true;
        }
        return false;