Skip to content

Commit 60a8fe9

Browse files
committed
.
1 parent 692d7a7 commit 60a8fe9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/FormMain.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,10 @@ private void SetProxy()
8585
Registry.SetValue(_keyName, ProxyServer, _proxy);
8686

8787
ToggleProxy();
88-
File.WriteAllText(ByPassFile, txtProxyByPass.Text);
89-
var list = new List<string>(Regex.Split(txtProxyByPass.Text, Environment.NewLine));
88+
string txt = txtProxyByPass.Text;
89+
txt = txt.Replace("£»", ";");
90+
File.WriteAllText(ByPassFile, txt);
91+
var list = new List<string>(Regex.Split(txt, Environment.NewLine));
9092

9193
var real = new List<string>();
9294
foreach (string s in list)

0 commit comments

Comments
 (0)