This commit is contained in:
2020-10-20 23:24:28 +08:00
parent eb36dca7d3
commit 848af16d80
3 changed files with 3 additions and 3 deletions

View File

@@ -379,7 +379,7 @@ public class ECLUpgradeBindingServer : EditorWindow
string str = JSON.JsonEncode(content);
Debug.Log(str);
string path = Path.Combine(Application.dataPath, CLPathCfg.self.basePath, "serversCfg/servers.json");
File.WriteAllText(path, str, Encoding.UTF8);
File.WriteAllText(path, str);
ThreadEx.exec(new System.Threading.ParameterizedThreadStart(doUploadServers), path);
}