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

Commit 7d701331 authored by Hakjun Choi's avatar Hakjun Choi Committed by Automerger Merge Worker
Browse files

Merge "Removed to avoid calling the updateImsServiceConfig twice" am: 40c5e3a3 am: 5c9cc6ed

Original change: https://android-review.googlesource.com/c/platform/frameworks/opt/telephony/+/1956967

Change-Id: I30b405eb66b84669418c4e4886c279ea49e7a8ba
parents 61ca4395 5c9cc6ed
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -3991,14 +3991,10 @@ public class ImsPhoneCallTracker extends CallTracker implements ImsPullCall {
        @Override
        public void onProvisioningIntChanged(int item, int value) {
            sendConfigChangedIntent(item, Integer.toString(value));
            if ((mImsManager != null)
                    && (item == ImsConfig.ConfigConstants.VOICE_OVER_WIFI_SETTING_ENABLED
                    || item == ImsConfig.ConfigConstants.VLT_SETTING_ENABLED
                    || item == ImsConfig.ConfigConstants.LVC_SETTING_ENABLED)) {
                // Update Ims Service state to make sure updated provisioning values take effect
                // immediately.
                updateImsServiceConfig();
            }

            // mImsManager.updateImsServiceConfig() will be called by ImsProvisioningController
            // when provisioning status is changed. The implementation is removed to avoid calling
            // the updateImsServiceConfig twice.
        }

        @Override