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

Commit 21d3957c authored by Suchand Ghosh's avatar Suchand Ghosh Committed by Gerrit - the friendly Code Review server
Browse files

IMS: Allow dial Conference call without URI List

Remove empty string check to place Conference call
without URI List.

Change-Id: Ibcd76618cab820973a769a23af5ee13c956ed23c
CRs-Fixed: 681238
parent a2b3c8e4
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -189,14 +189,14 @@ class NewOutgoingCallIntentBroadcaster {
        }

        String number = PhoneNumberUtils.getNumberFromIntent(intent, mContext);
        if (TextUtils.isEmpty(number)) {
        boolean isConferenceUri = intent.getBooleanExtra(
                TelephonyProperties.EXTRA_DIAL_CONFERENCE_URI, false);
        if (!isConferenceUri && TextUtils.isEmpty(number)) {
            Log.w(this, "Empty number obtained from the call intent.");
            return DisconnectCause.NO_PHONE_NUMBER_SUPPLIED;
        }

        boolean isUriNumber = PhoneNumberUtils.isUriNumber(number);
        boolean isConferenceUri = intent.getBooleanExtra(
                TelephonyProperties.EXTRA_DIAL_CONFERENCE_URI, false);
        boolean isSkipSchemaParsing = intent.getBooleanExtra(
                TelephonyProperties.EXTRA_SKIP_SCHEMA_PARSING, false);
        Log.v(this,"processIntent isConferenceUri: " + isConferenceUri +