Commit c71842c9 authored by 6ixfalls's avatar 6ixfalls Committed by GitHub
Browse files

Fix "/" Route

parent eb64b25f
...@@ -141,7 +141,7 @@ public final class HttpServer { ...@@ -141,7 +141,7 @@ public final class HttpServer {
public static class DefaultRequestRouter implements Router { public static class DefaultRequestRouter implements Router {
@Override public void applyRoutes(Express express, Javalin handle) { @Override public void applyRoutes(Express express, Javalin handle) {
express.get("/", (request, response) -> { express.get("/", (request, response) -> {
File file = new File(HTTP_STATIC_FILES.errorFile); File file = new File(HTTP_STATIC_FILES.indexFile);
if(!file.exists()) if(!file.exists())
response.send(""" response.send("""
<!DOCTYPE html> <!DOCTYPE html>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment