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

Commit 14caba37 authored by Sarah Chin's avatar Sarah Chin Committed by Automerger Merge Worker
Browse files

DeactivateDataCall send response only if no error am: 709827c2

parents 02ed8131 709827c2
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);
        }
    }