#1344 客户端本地缓存目录,剔除特殊字符串

This commit is contained in:
rushsky518 2019-06-24 14:10:48 +08:00
parent 6d5191f11a
commit 88c3ad0c53

View File

@ -322,6 +322,7 @@ public class ServerListManager {
String split = "";
for (String serverIp : serverIps) {
sb.append(split);
serverIp = serverIp.replaceAll("http(s)?://", "");
sb.append(serverIp.replaceAll(":", "_"));
split = "-";
}