[Modify] Polish it

This commit is contained in:
sta 2021-08-15 22:02:01 +09:00
parent 05a94817d3
commit aa006eb9a8

View File

@ -912,7 +912,9 @@ namespace WebSocketSharp.Server
return;
}
evt (this, new HttpRequestEventArgs (context, _docRootPath));
var e = new HttpRequestEventArgs (context, _docRootPath);
evt (this, e);
context.Response.Close ();
}