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

Commit f28031b1 authored by Tomasz Mikolajewski's avatar Tomasz Mikolajewski Committed by android-build-merger
Browse files

Do not crash when stack is null.

am: d2d654c7

Change-Id: Ia317f477cadad07f1fcc649db68295831aa5a200
parents fe044e8a d2d654c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@ public class SearchViewManager implements
    }

    public void showMenu(@Nullable DocumentStack stack) {
        final DocumentInfo cwd = stack.peek();
        final DocumentInfo cwd = stack != null ? stack.peek() : null;

        boolean supportsSearch = true;