We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 756103a commit a88682cCopy full SHA for a88682c
Server/FileServer.cs
@@ -13,7 +13,7 @@ public FileServer(int port = 10081) : base(port)
13
14
protected override void OnResponse(HttpListenerRequest request, HttpListenerResponse response)
15
{
16
- var url = HttpUtility.UrlDecode(request.RawUrl).Remove(0, 1);
+ var url = request.Url.LocalPath.Remove(0, 1);
17
var filename = Path.Combine(Setting.FileServerRootPath, url);
18
if (!url.Contains(".."))
19
0 commit comments