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

Commit 46e57f58 authored by Sarah Chin's avatar Sarah Chin Committed by Android (Google) Code Review
Browse files

Merge "DeactivateDataCall send response only if no error" into tm-dev

parents 811be8fc bead889a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -75,7 +75,9 @@ public class DataResponse extends IRadioDataResponse.Stub {

        if (rr != null) {
            int response = responseInfo.error;
            if (responseInfo.error == RadioError.NONE) {
                RadioResponse.sendMessageResponse(rr.mResult, response);
            }
            mRil.processResponseDone(rr, responseInfo, response);
        }
    }
+3 −1
Original line number Diff line number Diff line
@@ -744,7 +744,9 @@ public class RadioResponse extends IRadioResponse.Stub {

        if (rr != null) {
            int response = responseInfo.error;
            if (responseInfo.error == RadioError.NONE) {
                sendMessageResponse(rr.mResult, response);
            }
            mRil.processResponseDone(rr, responseInfo, response);
        }
    }