summaryrefslogtreecommitdiffstats
path: root/api4/image.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/image.go')
-rw-r--r--api4/image.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/api4/image.go b/api4/image.go
index 4589de204..99065a8c7 100644
--- a/api4/image.go
+++ b/api4/image.go
@@ -16,7 +16,8 @@ func getImage(c *Context, w http.ResponseWriter, r *http.Request) {
// security reasons.
if transform := c.App.ImageProxyAdder(); transform != nil {
http.Redirect(w, r, transform(r.URL.Query().Get("url")), http.StatusFound)
- } else {
- http.NotFound(w, r)
+ return
}
+
+ http.NotFound(w, r)
}