We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e802039 + 784eb36 commit cbc41deCopy full SHA for cbc41de
telephony/java/com/android/internal/telephony/IccCard.java
@@ -580,7 +580,9 @@ private void handleIccCardStatus(IccCardStatus newCardStatus) {
580
mHandler.sendMessage(mHandler.obtainMessage(EVENT_CARD_ADDED, null));
581
}
582
583
- if (oldState != State.READY && newState == State.READY) {
+ // Call onReady only when SIM or RUIM card becomes ready (not NV)
584
+ if (oldState != State.READY && newState == State.READY &&
585
+ (is3gpp || isSubscriptionFromIccCard)) {
586
mIccFileHandler.setAid(getAid());
587
mIccRecords.onReady();
588
0 commit comments