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

Commit 374c3b96 authored by Pengquan Meng's avatar Pengquan Meng Committed by android-build-merger
Browse files

Merge "Fixed CME for SubscriptionController"

am: 215bd24a

Change-Id: I448888e710a516e4dc8bbff1d7668774f00d93d8
parents ab35a558 215bd24a
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -316,8 +316,11 @@ public class SubscriptionController extends ISub.Stub {

        MultiSimSettingController.getInstance().onSubscriptionsChanged();
        TelephonyMetrics metrics = TelephonyMetrics.getInstance();
        metrics.updateActiveSubscriptionInfoList(
                Collections.unmodifiableList(mCacheActiveSubInfoList));
        List<SubscriptionInfo> subInfos;
        synchronized (mSubInfoListLock) {
            subInfos = new ArrayList<>(mCacheActiveSubInfoList);
        }
        metrics.updateActiveSubscriptionInfoList(subInfos);
    }

    /**