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

Commit 5bf19edb authored by Philip Junker's avatar Philip Junker
Browse files

Avoid null pointer exception when calling NotificationShadeWindowControllerImpl#dump

Fix: 185470518
Test: manual
Change-Id: I3a345929ed09e895f54622bd151a60f0c9acab31
(cherry picked from commit bc2ce2a6)
parent 0c526ae8
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -666,8 +666,10 @@ public class NotificationShadeWindowControllerImpl implements NotificationShadeW
        pw.println(TAG + ":");
        pw.println("  mKeyguardDisplayMode=" + mKeyguardDisplayMode);
        pw.println(mCurrentState);
        if (mNotificationShadeView != null && mNotificationShadeView.getViewRootImpl() != null) {
            mNotificationShadeView.getViewRootImpl().dump("  ", pw);
        }
    }

    @Override
    public boolean isShowingWallpaper() {