Loading services/core/java/com/android/server/vcn/TelephonySubscriptionTracker.java +10 −3 Original line number Diff line number Diff line Loading @@ -322,9 +322,16 @@ public class TelephonySubscriptionTracker extends BroadcastReceiver { if (SubscriptionManager.isValidSubscriptionId(subId)) { // Get only configs as needed to save memory. final PersistableBundle carrierConfig = CarrierConfigManager.getCarrierConfigSubset(mContext, subId, VcnManager.VCN_RELATED_CARRIER_CONFIG_KEYS); PersistableBundle carrierConfig = new PersistableBundle(); try { carrierConfig = mCarrierConfigManager.getConfigForSubId( subId, VcnManager.VCN_RELATED_CARRIER_CONFIG_KEYS); } catch (RuntimeException exception) { Slog.w(TAG, "CarrierConfigLoader is not available."); } if (mDeps.isConfigForIdentifiedCarrier(carrierConfig)) { mReadySubIdsBySlotId.put(slotId, subId); Loading Loading
services/core/java/com/android/server/vcn/TelephonySubscriptionTracker.java +10 −3 Original line number Diff line number Diff line Loading @@ -322,9 +322,16 @@ public class TelephonySubscriptionTracker extends BroadcastReceiver { if (SubscriptionManager.isValidSubscriptionId(subId)) { // Get only configs as needed to save memory. final PersistableBundle carrierConfig = CarrierConfigManager.getCarrierConfigSubset(mContext, subId, VcnManager.VCN_RELATED_CARRIER_CONFIG_KEYS); PersistableBundle carrierConfig = new PersistableBundle(); try { carrierConfig = mCarrierConfigManager.getConfigForSubId( subId, VcnManager.VCN_RELATED_CARRIER_CONFIG_KEYS); } catch (RuntimeException exception) { Slog.w(TAG, "CarrierConfigLoader is not available."); } if (mDeps.isConfigForIdentifiedCarrier(carrierConfig)) { mReadySubIdsBySlotId.put(slotId, subId); Loading