Skip to content

Commit

Permalink
Merge pull request #47 from issuedat/fix-guinea-mobile-num
Browse files Browse the repository at this point in the history
fix: Guinea mobile numbers can be 9 digits
  • Loading branch information
dongri authored Sep 30, 2024
2 parents fefb131 + 5d66b8f commit f67c258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iso3166.go
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ func populateISO3166() {
i.CountryCode = "224"
i.CountryName = "Guinea"
i.MobileBeginWith = []string{"6"}
i.PhoneNumberLengths = []int{8}
i.PhoneNumberLengths = []int{8, 9}
iso3166Datas = append(iso3166Datas, i)

i.Alpha2 = "GP"
Expand Down

0 comments on commit f67c258

Please sign in to comment.