fix(public): fix wrong mux for public endoint
build / Go-Build (push) Successful in 1m25s

This commit is contained in:
2026-05-26 01:37:26 +02:00
parent 0277fcfdbc
commit 75ebe4ec70
+1 -1
View File
@@ -49,7 +49,7 @@ func PrepareHTTP() {
} }
}) })
http.Handle("/public/", http.StripPrefix("/public/", http.FileServer(svg.Storage.GetPublicDir()))) mux.Handle("/public/", http.StripPrefix("/public/", http.FileServer(svg.Storage.GetPublicDir())))
} }
func Start() { func Start() {