mirror of
https://github.com/retailcrm/mg-transport-core.git
synced 2025-04-04 05:43:33 +03:00
fix comment
This commit is contained in:
parent
81ce0c4ba8
commit
cc638daffb
1 changed files with 4 additions and 2 deletions
|
@ -53,8 +53,10 @@ func FormatNumberForWA(number string) (string, error) {
|
|||
}
|
||||
|
||||
// ParsePhone this function parses the number as a string
|
||||
// For mexican numbers automatic add 1 after to the country code (521).
|
||||
// But for argentine numbers there is no automatic addition 9 to the country code.
|
||||
// For Mexican numbers `1` is always added to the national number because it is always removed during parsing.
|
||||
// Attention when formatted in libphonenumber.INTERNATIONAL 1 will not be after the country code, even though
|
||||
// it is in the national number.
|
||||
// But for Argentine numbers there is no automatic addition 9 to the country code.
|
||||
func ParsePhone(phoneNumber string) (*pn.PhoneNumber, error) {
|
||||
trimmedPhone := TrimmedPhoneRegexp.ReplaceAllString(phoneNumber, "")
|
||||
if len(trimmedPhone) < MinPhoneSymbolCount {
|
||||
|
|
Loading…
Add table
Reference in a new issue