oops, check ext
All checks were successful
Sync PIA Servers / docker (17, 3.8.5) (push) Successful in 19s

This commit is contained in:
Braydon 2024-04-29 01:53:30 -04:00
parent 2d563f900b
commit 3659a98f5a

View File

@ -120,8 +120,13 @@ public final class PIAServerList {
System.out.println("Found " + openVpnFiles.length + " OpenVPN files, reading them...");
for (File file : openVpnFiles) {
String region = file.getName().split("\\.")[0]; // The server region
String[] split = file.getName().split("\\.");
String region = split[0]; // The server region
try {
// Not an OpenVPN file, ignore it
if (!split[1].equals("ovpn")) {
continue;
}
for (String line : Files.readAllLines(file.toPath())) {
// Line doesn't contain the remote server, ignore it
if (!line.startsWith("remote ")) {