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

Commit d653fb04 authored by Shuo Qian's avatar Shuo Qian Committed by android-build-merger
Browse files

Merge "Populate 'hasKnownUserIntentEmergency' flag"

am: 168fe2f0

Change-Id: I7f1ba516f9593ad2bab51d0d24fc1e2f3e9e60ed
parents 3afc80e1 168fe2f0
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -123,6 +123,12 @@ public class CallIntentProcessor {
            clientExtras = new Bundle();
        }

        if (intent.hasExtra(TelecomManager.EXTRA_IS_USER_INTENT_EMERGENCY_CALL)) {
            clientExtras.putBoolean(TelecomManager.EXTRA_IS_USER_INTENT_EMERGENCY_CALL,
                    intent.getBooleanExtra(TelecomManager.EXTRA_IS_USER_INTENT_EMERGENCY_CALL,
                            false));
        }

        // Ensure call subject is passed on to the connection service.
        if (intent.hasExtra(TelecomManager.EXTRA_CALL_SUBJECT)) {
            String callsubject = intent.getStringExtra(TelecomManager.EXTRA_CALL_SUBJECT);