summaryrefslogtreecommitdiffstats
path: root/app/plugin_requests.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/plugin_requests.go')
-rw-r--r--app/plugin_requests.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/plugin_requests.go b/app/plugin_requests.go
index 10ef758b4..1c5a73e8c 100644
--- a/app/plugin_requests.go
+++ b/app/plugin_requests.go
@@ -72,5 +72,5 @@ func (a *App) servePluginRequest(w http.ResponseWriter, r *http.Request, handler
r.URL.RawQuery = newQuery.Encode()
r.URL.Path = strings.TrimPrefix(r.URL.Path, "/plugins/"+params["plugin_id"])
- handler(plugin.NewBlankContext(), w, r)
+ handler(&plugin.Context{}, w, r)
}