Skip to content

Commit 829edb8

Browse files
author
Wink Saville
committed
Fix country code for Netherlands Antilles.
Change the cc to "ai" from "nl" otherwise the timezone is set to Netherlands which is +1 rather than the Caribbean which is -4. Bug: 6765706 Change-Id: Ie399efe95ce93b73eb4e60cfc47e621cce85e6e5
1 parent 73d90e7 commit 829edb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

telephony/java/com/android/internal/telephony/MccTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ private static void setWifiCountryCodeFromMcc(Context context, int mcc) {
407407
table.add(new MccEntry(356,"kn",2)); //Saint Kitts and Nevis
408408
table.add(new MccEntry(358,"lc",2)); //Saint Lucia
409409
table.add(new MccEntry(360,"vc",2)); //Saint Vincent and the Grenadines
410-
table.add(new MccEntry(362,"nl",2)); //Netherlands Antilles
410+
table.add(new MccEntry(362,"ai",2)); //Netherlands Antilles
411411
table.add(new MccEntry(363,"aw",2)); //Aruba
412412
table.add(new MccEntry(364,"bs",2)); //Bahamas (Commonwealth of the)
413413
table.add(new MccEntry(365,"ai",3)); //Anguilla

0 commit comments

Comments
 (0)