From 27c525ef52c4949ff34b9d69a35254e28c84ad5f Mon Sep 17 00:00:00 2001 From: MickaelK Date: Wed, 17 Sep 2025 17:43:19 +1000 Subject: [PATCH] fix (plugin): static assets --- server/ctrl/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/ctrl/plugin.go b/server/ctrl/plugin.go index b2a12890..acf3b138 100644 --- a/server/ctrl/plugin.go +++ b/server/ctrl/plugin.go @@ -56,7 +56,7 @@ func PluginStaticHandler(ctx *App, res http.ResponseWriter, req *http.Request) { } b, err = model.GetPluginFile(mux.Vars(req)["name"], path+cfg.FileExt) if err != nil { - break + continue } head.Set("Content-Type", mtype) if cfg.ContentType != "" {