Remove invalid offset error

This commit is contained in:
Melon 2024-07-25 22:16:19 +01:00
parent 33b5c99234
commit 6b19e2d4ca
Signed by: melon
GPG Key ID: 6C9D970C50D26A25
2 changed files with 2 additions and 18 deletions

View File

@ -13,16 +13,8 @@ import (
)
func (h *HttpServer) ManageAppsGet(rw http.ResponseWriter, req *http.Request, _ httprouter.Params, auth UserAuth) {
offset := 0
q := req.URL.Query()
if q.Has("offset") {
var err error
offset, err = strconv.Atoi(q.Get("offset"))
if err != nil {
http.Error(rw, "400 Bad Request: Invalid offset", http.StatusBadRequest)
return
}
}
offset, _ := strconv.Atoi(q.Get("offset"))
var role types.UserRole
var appList []database.GetAppListRow

View File

@ -17,16 +17,8 @@ import (
)
func (h *HttpServer) ManageUsersGet(rw http.ResponseWriter, req *http.Request, _ httprouter.Params, auth UserAuth) {
offset := 0
q := req.URL.Query()
if q.Has("offset") {
var err error
offset, err = strconv.Atoi(q.Get("offset"))
if err != nil {
http.Error(rw, "400 Bad Request: Invalid offset", http.StatusBadRequest)
return
}
}
offset, _ := strconv.Atoi(q.Get("offset"))
var role types.UserRole
var userList []database.GetUserListRow