Browse Source

Merge cf4a21a28b into cf446565d9

pull/3254/merge
mandlil 4 days ago
committed by GitHub
parent
commit
b39d263198
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java

+ 3
- 0
java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java View File

@ -2902,6 +2902,9 @@ public class PhoneNumberUtil {
String possibleCountryIddPrefix = "NonMatch";
if (defaultRegionMetadata != null) {
possibleCountryIddPrefix = defaultRegionMetadata.getInternationalPrefix();
if (defaultRegionMetadata.getId().equals("RU") && new String(fullNumber).startsWith("8108")) {
possibleCountryIddPrefix = "00";
}
}
CountryCodeSource countryCodeSource =


Loading…
Cancel
Save