Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Changed the order of the VPN countries
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
Cliqz/HomePanel/VPN/VPNEndPointManager.swift
|
|
@@ -85,7 +85,7 @@ class VPNEndPointManager { |
|
|
|
|
|
//TODO: [IP-426] to be removed and get the countries from the backend |
|
|
private func fillInDummyCountries() { |
|
|
for id in ["us", "de", "tr", "pl", "it", "gr", "hu", "at", "es", "nl", "fr", "pt", "gb", "ca", "ba", "bn", "hr", "in", "ro", "rs", "ua"] { |
|
|
for id in ["us", "de", "ba", "bn", "fr", "gr", "in", "it", "ca", "hr", "nl", "at", "pl", "pt", "ro", "rs", "es", "tr", "ua", "hu", "gb"] { |
|
|
if let name = CountriesLookup[id] { |
|
|
self.countries.append(VPNCountry(id: id, name: name, endpoint: "", remoteID: "")) |
|
|
} |
|
|
|