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

Commit ece77d4b authored by Felipe Leme's avatar Felipe Leme Committed by android-build-merger
Browse files

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

am: 5efad86b

Change-Id: I090ee3668c21a49b570d323a0f765da10088c4c6
parents e2d8a79b 5efad86b
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);
        }
    }