Merge pull request #1635 from RaspAP/fix/nordvpn-cli

Update parsing of NordVPN countries, fixes #1634
This commit is contained in:
Bill Zimmerman
2024-08-10 19:30:02 +02:00
committed by GitHub

View File

@@ -240,11 +240,9 @@ function getCountries($id, $binPath)
} }
break; break;
case 3: // nordvpn case 3: // nordvpn
$output = stripArtifacts($output,'\s');
$arrTmp = explode(",", $output[0]); $arrTmp = explode(",", $output[0]);
$countries = array_combine($arrTmp, $arrTmp); foreach ($output as $key => $value) {
foreach ($countries as $key => $value) { $countries[$value] = str_replace("_", " ", $value);
$countries[$key] = str_replace("_", " ", $value);
} }
break; break;
default: default: