use abstracted FS to get 404 page
Alan Pearce alan@alanpearce.eu
Fri, 19 Apr 2024 14:50:18 +0200
1 files changed, 3 insertions(+), 3 deletions(-)
jump to
M server.go → server.go
@@ -101,12 +101,12 @@ files := http.FS(fs) notFoundHandler := func(c *fiber.Ctx) error { c.Status(fiber.StatusNotFound).Type("html", "utf-8") - content, err := fs.ReadFile("public/404.html") + content, err := files.Open("public/404.html") if err != nil { - content = []byte("404 Not Found") c.Type("txt") + return c.SendString("404 Not Found") } - return c.Send(content) + return c.SendStream(content) } website.Get("/404.html", notFoundHandler) website.Use("/", filesystem.New(filesystem.Config{