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

Commit b3537f8f authored by Elliott Hughes's avatar Elliott Hughes
Browse files

If telephony wants ASCII casing, it needs to ask for it.

parent 06f093f7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -220,11 +220,11 @@ public final class MccTable
        if (null == language) {
            return; // no match possible
        }
        language = language.toLowerCase();
        language = language.toLowerCase(Locale.ROOT);
        if (null == country) {
            country = "";
        }
        country = country.toUpperCase();
        country = country.toUpperCase(Locale.ROOT);

        if((null == l || 0 == l.length()) && (null == c || 0 == c.length())) {
            try {