diff options
Diffstat (limited to 'modules/lists')
-rw-r--r-- | modules/lists/lists.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/lists/lists.go b/modules/lists/lists.go index d411209..be6e399 100644 --- a/modules/lists/lists.go +++ b/modules/lists/lists.go | |||
@@ -701,14 +701,13 @@ func (m *Module) removeGrilFromList(w http.ResponseWriter, r *http.Request, p ht | |||
701 | http.Error(w, "could not remove gril", 500) | 701 | http.Error(w, "could not remove gril", 500) |
702 | return | 702 | return |
703 | } | 703 | } |
704 | 704 | ||
705 | _, err := m.g.DB.Exec(`UPDATE grilist.lists_grils SET "order" = "order" - 1 WHERE list_id = $1 AND "order" > $2`, listID, oldOrder) | 705 | _, err = m.g.DB.Exec(`UPDATE grilist.lists_grils SET "order" = "order" - 1 WHERE list_id = $1 AND "order" > $2`, listID, oldOrder) |
706 | if err != nil { | 706 | if err != nil { |
707 | log.Println("error removing gril:", err) | 707 | log.Println("error removing gril:", err) |
708 | http.Error(w, "could not remove gril", 500) | 708 | http.Error(w, "could not remove gril", 500) |
709 | return | 709 | return |
710 | } | 710 | } |
711 | |||
712 | 711 | ||
713 | list.Grils = list.Grils[:0] | 712 | list.Grils = list.Grils[:0] |
714 | 713 | ||