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

Commit 378fef6d authored by Shruthi Krishna's avatar Shruthi Krishna
Browse files

Merge tag 'android-5.0.2_r1' into merge_branch

Android 5.0.2 release 1

* tag 'android-5.0.2_r1':
  Allow calling of voicemail using CALL_PRIVILEGED

Change-Id: I69d69eba28ce273be584cd7f7b46fb6725224431
parents 137bb023 4761b1b5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -171,7 +171,8 @@ class NewOutgoingCallIntentBroadcaster {

        boolean isVoicemailNumber = PhoneAccount.SCHEME_VOICEMAIL.equals(handle.getScheme());
        if (isVoicemailNumber) {
            if (Intent.ACTION_CALL.equals(action)) {
            if (Intent.ACTION_CALL.equals(action)
                    || Intent.ACTION_CALL_PRIVILEGED.equals(action)) {
                // Voicemail calls will be handled directly by the telephony connection manager
                Log.i(this, "Placing call immediately instead of waiting for "
                        + " OutgoingCallBroadcastReceiver: %s", intent);