Merge "Allow radio info on phones with no subscription"
am: 19d1f890a0
Change-Id: Ia63778cf83212b2670413e2567c068bf92f6ff05
This commit is contained in:
@@ -1621,14 +1621,14 @@ public class RadioInfo extends Activity {
|
||||
}
|
||||
log("switching to phone " + phoneIndex);
|
||||
// getSubId says it takes a slotIndex, but it actually takes a phone index
|
||||
int subId = SubscriptionManager.INVALID_SUBSCRIPTION_ID;
|
||||
int[] subIds = SubscriptionManager.getSubId(phoneIndex);
|
||||
if (subIds == null || subIds.length < 1) {
|
||||
log("no subscription found for phoneIndex " + phoneIndex);
|
||||
return;
|
||||
if (subIds != null && subIds.length > 0) {
|
||||
subId = subIds[0];
|
||||
}
|
||||
mSelectedPhoneIndex = phoneIndex;
|
||||
|
||||
updatePhoneIndex(phoneIndex, subIds[0]);
|
||||
updatePhoneIndex(phoneIndex, subId);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user