diff --git a/main.go b/main.go index cd0b5ae..44079af 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,6 @@ import ( "leech/config" "leech/route" "net/http" - "net/url" "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/filesystem" @@ -29,7 +28,7 @@ func main() { })) for dirName, dirToServe := range config.Config.ServeDirs { - app.Static("/serve/"+url.QueryEscape(dirName), dirToServe) + app.Static("/serve/"+dirName, dirToServe) } app.Use("/", route.HandleList)