Browse Source

Merge pull request #1762 from celeron533/Server_IPV6_URL

Server address should not be encoded
tags/4.0.10
Max Lv GitHub 7 years ago
parent
commit
4431610205
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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(
"{0}@{1}:{2}/?plugin={3}",
websafeBase64,
HttpUtility.UrlEncode(server.server, Encoding.UTF8),
server.server,
server.server_port,
HttpUtility.UrlEncode(pluginPart, Encoding.UTF8));
}


Loading…
Cancel
Save