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

Commit 215bd24a authored by Pengquan Meng's avatar Pengquan Meng Committed by Gerrit Code Review
Browse files

Merge "Fixed CME for SubscriptionController"

parents 4767dcbb 750e30bc
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);
    }

    /**