We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32cbdd3 commit 331615aCopy full SHA for 331615a
src/main/java/org/example/ConnectionHandler.java
@@ -82,9 +82,9 @@ public void runConnectionHandler() throws IOException {
82
return;
83
}
84
85
- // Sanitize URI here (clean it)
86
- String sanitizedUri = sanitizeUri(parser.getUri());
87
- String cacheKey = "www:" + sanitizedUri;
+ // Let StaticFileHandler handle everything
+ StaticFileHandler sfh = new StaticFileHandler();
+ sfh.sendGetRequest(client.getOutputStream(), parser.getUri());
88
89
90
private String sanitizeUri(String uri) {
0 commit comments