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

Commit 6c721e6c authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fixed NPE when EF_EHPLMN does not exist"

parents 8fc5a863 c08fcf4b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4478,7 +4478,7 @@ public class GsmCdmaPhone extends Phone {
    public @NonNull List<String> getEquivalentHomePlmns() {
        if (isPhoneTypeGsm()) {
            IccRecords r = mIccRecords.get();
            if (r != null) {
            if (r != null && r.getEhplmns() != null) {
                return Arrays.asList(r.getEhplmns());
            }
        } else if (isPhoneTypeCdma()) {