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

Commit 3b2aa31a authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fixed NullPointerException when parseEfSpdi."

parents eebd4b62 b695372c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2048,7 +2048,7 @@ public class SIMRecords extends IccRecords {
            plmnCode = IccUtils.bcdPlmnToString(plmnEntries, i);

            // Valid operator codes are 5 or 6 digits
            if (plmnCode.length() >= 5) {
            if (plmnCode != null && plmnCode.length() >= 5) {
                log("EF_SPDI network: " + plmnCode);
                mSpdiNetworks.add(plmnCode);
            }