Change max to limit
Cette révision appartient à :
Parent
c2d931c71f
révision
cb13bcded9
1 fichiers modifiés avec 1 ajouts et 1 suppressions
|
@ -119,7 +119,7 @@ func searchByQuery(r *http.Request, pagenum int, countAll bool, withUser bool, d
|
|||
func searchByQueryPostgres(r *http.Request, pagenum int, countAll bool, withUser bool, deleted bool, hidden bool) (
|
||||
search common.SearchParam, tor []model.Torrent, count int, err error,
|
||||
) {
|
||||
max, err := strconv.ParseUint(r.URL.Query().Get("max"), 10, 32)
|
||||
max, err := strconv.ParseUint(r.URL.Query().Get("limit"), 10, 32)
|
||||
if err != nil {
|
||||
max = 50 // default Value maxPerPage
|
||||
} else if max > 300 {
|
||||
|
|
Référencer dans un nouveau ticket