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