fix(airvpn): remove commas from city names

This commit is contained in:
Quentin McGaw
2023-03-25 12:55:12 +00:00
parent 9a528c42f8
commit 0df68f76d5
2 changed files with 922 additions and 694 deletions

View File

@@ -43,7 +43,7 @@ func (u *Updater) FetchServers(ctx context.Context, minServers int) (
continue
}
city := strings.ReplaceAll(apiServer.Location, ", ", "")
city := strings.ReplaceAll(apiServer.Location, ", ", " ")
city = strings.ReplaceAll(city, ",", "")
baseServer := models.Server{
ServerName: apiServer.PublicName,

File diff suppressed because it is too large Load Diff