From cf6a5bf01628024937eb06adaec9f581dd44e7f1 Mon Sep 17 00:00:00 2001 From: Gregory Salaun Date: Thu, 24 Oct 2024 22:00:35 +0700 Subject: [PATCH] update xml --- xml.go | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/xml.go b/xml.go index 8427e0f..47f99ec 100644 --- a/xml.go +++ b/xml.go @@ -66,12 +66,10 @@ func LoadCountryFile() Countries { func GetDXCC(dxCall string, Countries Countries) string { for i := 0; i < len(Countries.Countries); i++ { - for j := 0; j < len(Countries.Countries[i].CountryPrefixList.CountryPrefixList); j++ { - regExp := regexp.MustCompile(Countries.Countries[i].CountryPrefixList.CountryPrefixList[j].PrefixList) - match := regExp.FindStringSubmatch(dxCall) - if len(match) != 0 { - return Countries.Countries[i].Dxcc - } + regExp := regexp.MustCompile(Countries.Countries[i].CountryPrefixList.CountryPrefixList[len(Countries.Countries[i].CountryPrefixList.CountryPrefixList)-1].PrefixList) + match := regExp.FindStringSubmatch(dxCall) + if len(match) != 0 { + return Countries.Countries[i].Dxcc } } return ""