Skip to content

Commit a88682c

Browse files
committed
fix file server
1 parent 756103a commit a88682c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Server/FileServer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public FileServer(int port = 10081) : base(port)
1313

1414
protected override void OnResponse(HttpListenerRequest request, HttpListenerResponse response)
1515
{
16-
var url = HttpUtility.UrlDecode(request.RawUrl).Remove(0, 1);
16+
var url = request.Url.LocalPath.Remove(0, 1);
1717
var filename = Path.Combine(Setting.FileServerRootPath, url);
1818
if (!url.Contains(".."))
1919
{

0 commit comments

Comments
 (0)