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

Commit 5efad86b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fixed NPE when FillService replies with a null FillResponse." into oc-dev

parents afb6b504 7c6e8e6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -156,7 +156,7 @@ final class ViewState {
        }
        // Then checks if the session has a response waiting authentication; if so, uses it instead.
        final FillResponse currentResponse = mSession.getCurrentResponse();
        if (currentResponse.getAuthentication() != null) {
        if (currentResponse != null && currentResponse.getAuthentication() != null) {
            mListener.onFillReady(currentResponse, this.id, mCurrentValue);
        }
    }