Fix incorrect param read bug in list deletion handler
This commit is contained in:
parent
3dcff5dbca
commit
bfe31b75c1
5
lists.go
5
lists.go
|
@ -151,11 +151,6 @@ func handleDeleteLists(c echo.Context) error {
|
||||||
ids pq.Int64Array
|
ids pq.Int64Array
|
||||||
)
|
)
|
||||||
|
|
||||||
// Read the list IDs if they were sent in the body.
|
|
||||||
if err := c.Bind(&ids); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if id < 1 && len(ids) == 0 {
|
if id < 1 && len(ids) == 0 {
|
||||||
return echo.NewHTTPError(http.StatusBadRequest, "Invalid ID.")
|
return echo.NewHTTPError(http.StatusBadRequest, "Invalid ID.")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue