Browse Source

Server address should not be encoded

tags/4.0.10
celeron533 7 years ago
parent
commit
c9ead3eee9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      shadowsocks-csharp/Controller/ShadowsocksController.cs

+ 1
- 1
shadowsocks-csharp/Controller/ShadowsocksController.cs View File

@@ -353,7 +353,7 @@ namespace Shadowsocks.Controller
url = string.Format( url = string.Format(
"{0}@{1}:{2}/?plugin={3}", "{0}@{1}:{2}/?plugin={3}",
websafeBase64, websafeBase64,
HttpUtility.UrlEncode(server.server, Encoding.UTF8),
server.server,
server.server_port, server.server_port,
HttpUtility.UrlEncode(pluginPart, Encoding.UTF8)); HttpUtility.UrlEncode(pluginPart, Encoding.UTF8));
} }


Loading…
Cancel
Save