This commit is contained in:
water.lyl 2018-10-30 17:52:01 +08:00
parent 9d70f720ca
commit 563105ae4f

View File

@ -294,7 +294,7 @@ public class ServerListManager {
String split = ""; String split = "";
for (String serverIp : serverIps) { for (String serverIp : serverIps) {
sb.append(split); sb.append(split);
sb.append(serverIp); sb.append(serverIp.replaceAll(":", "_"));
split = "-"; split = "-";
} }
return sb.toString(); return sb.toString();