Skip to content
Snippets Groups Projects
Commit a0fa2ca2 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Fixed a minor issue

parent 4c3601f3
No related branches found
No related tags found
No related merge requests found
...@@ -55,6 +55,7 @@ func pageImageDetail(ctx PageContext) http.Handler { ...@@ -55,6 +55,7 @@ func pageImageDetail(ctx PageContext) http.Handler {
if err != nil { if err != nil {
panic(err) panic(err)
} }
http.Redirect(w, r, r.URL.Path, http.StatusTemporaryRedirect)
return return
case "delete": case "delete":
_, err = ctx.Database.Exec("DELETE FROM images WHERE id = $1 AND owner = $2", info.Id, user.Id) _, err = ctx.Database.Exec("DELETE FROM images WHERE id = $1 AND owner = $2", info.Id, user.Id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment