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

Commit ba2afeaa authored by Zhang Fang's avatar Zhang Fang
Browse files

Fix issue that displays wrong SIM capatity in Mms settings.

"EVENT_GET_SMS_RECORD_SIZE_DONE" value is same as "EVENT_APP_LOCKED"
 which is defined in SIMRecords.java, it will make code confusion.

Change the value for "EVENT_GET_SMS_RECORD_SIZE_DONE"
 to resolve the confusion.

Change-Id: I349381bb52c34ebae2655f54049acc613bcc9b0d
CRs-Fixed: 755175
parent 47b4b704
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -105,12 +105,12 @@ public abstract class IccRecords extends Handler implements IccConstants {

    public static final int EVENT_GET_ICC_RECORD_DONE = 100;
    public static final int EVENT_REFRESH = 31; // ICC refresh occurred
    protected static final int EVENT_GET_SMS_RECORD_SIZE_DONE = 28;
    public static final int EVENT_REFRESH_OEM = 29;
    protected static final int EVENT_APP_READY = 1;
    private static final int EVENT_AKA_AUTHENTICATE_DONE          = 90;

    private boolean mOEMHookSimRefresh = false;
    protected static final int EVENT_GET_SMS_RECORD_SIZE_DONE = 35;

    @Override
    public String toString() {