From 5d66b8fda502dafbfa21ee9db255ec020b235774 Mon Sep 17 00:00:00 2001 From: issuedat <165281975+issuedat@users.noreply.github.com> Date: Mon, 30 Sep 2024 14:44:26 +0200 Subject: [PATCH] fix: Guinea mobile numbers can be 9 digits --- iso3166.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iso3166.go b/iso3166.go index eff5362..b82b896 100644 --- a/iso3166.go +++ b/iso3166.go @@ -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"