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

Commit 26757c4a authored by Tyler Gunn's avatar Tyler Gunn Committed by android-build-merger
Browse files

Merge "Rename EXTRA_E_CALL to EXTRA_EMERGENCY_CALL."

am: aca44d3c

Change-Id: I25470881cb5b42c8859de65800a09be5574becb9
parents 2640a014 aca44d3c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -409,7 +409,7 @@ public class TelephonyTester {
        if (extras == null) {
            extras = new Bundle();
        }
        extras.putBoolean(ImsCallProfile.EXTRA_E_CALL, true);
        extras.putBoolean(ImsCallProfile.EXTRA_EMERGENCY_CALL, true);
        callProfile.mCallExtras = extras;
        imsCall.getImsCallSessionListenerProxy().callSessionUpdated(imsCall.getSession(),
                callProfile);
+1 −1
Original line number Diff line number Diff line
@@ -1093,7 +1093,7 @@ public class ImsPhoneConnection extends Connection implements
    }

    private void updateEmergencyCallFromExtras(Bundle extras) {
        if (extras.getBoolean(ImsCallProfile.EXTRA_E_CALL)) {
        if (extras.getBoolean(ImsCallProfile.EXTRA_EMERGENCY_CALL)) {
            setIsNetworkIdentifiedEmergencyCall(true);
        }
    }