Revert "Merge pull request #703 from zznty/dev"

This reverts commit 3e6af5afd3, reversing
changes made to 730efae7c7.
This commit is contained in:
microwin7 2024-03-12 19:33:17 +03:00
parent ac6c312ed4
commit 7759ea9182
1 changed files with 1 additions and 3 deletions

View File

@ -14,8 +14,6 @@ import java.io.FileNotFoundException;
import java.io.RandomAccessFile;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.time.Clock;
@ -188,7 +186,7 @@ public class FileServerHandler extends SimpleChannelInboundHandler<FullHttpReque
final String path;
try {
path = Paths.get(new URI(URLEncoder.encode(uri, StandardCharsets.UTF_8)).getPath()).normalize().toString().substring(1);
path = Paths.get(new URI(uri).getPath()).normalize().toString().substring(1);
} catch (URISyntaxException e) {
sendError(ctx, BAD_REQUEST);
return;