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

Commit 1ad31dcf authored by Massimo Carli's avatar Massimo Carli
Browse files

Fix NPE on reachability transition

Flag: EXEMPT Small fix
Fix: 432773663
Test: m

Change-Id: Ifcba9276ba92a55f0c841cefad304c59e5a47c4e
parent c6366208
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1273,7 +1273,8 @@ class WindowOrganizerController extends IWindowOrganizerController.Stub
                }
                // Disable reachability when an InputMethod is visible.
                final DisplayContent dc = wc.mDisplayContent;
                if (dc != null && dc.mInputMethodWindow.isVisible()) {
                if (dc != null && dc.mInputMethodWindow != null
                        && dc.mInputMethodWindow.isVisible()) {
                    break;
                }
                final Task currentTask = wc.asTask();