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

Commit 40c5e3a3 authored by Hakjun Choi's avatar Hakjun Choi Committed by Gerrit Code Review
Browse files

Merge "Removed to avoid calling the updateImsServiceConfig twice"

parents f97c67e9 0c6f287d
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