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

Commit eb5db373 authored by terrycrhuang's avatar terrycrhuang Committed by Terry Huang
Browse files

Fix requestIccSimAuthenticationResponse failure

Bug: 215631156
Bug: 221358641
Test: WFC work
Change-Id: Ifc7320f27b6279d0a1a879c55d13b9721913e4db
parent 631bddd4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -290,7 +290,7 @@ public class SimResponse extends IRadioSimResponse.Stub {

        if (rr != null) {
            IccIoResult ret = new IccIoResult(iccIo.sw1, iccIo.sw2,
                    TextUtils.isEmpty(iccIo.simResponse) ? null : iccIo.simResponse);
                    TextUtils.isEmpty(iccIo.simResponse) ? null : iccIo.simResponse.getBytes());
            if (responseInfo.error == RadioError.NONE) {
                RadioResponse.sendMessageResponse(rr.mResult, ret);
            }