fix bug user search API pagesize didn't obey ExplorePagingNum (#6579) (#6586)

This commit is contained in:
Lunny Xiao 2019-04-12 09:45:35 +08:00 committed by techknowlogick
parent 95e12be30f
commit 5be1b7df3f
1 changed files with 0 additions and 3 deletions

View File

@ -55,9 +55,6 @@ func Search(ctx *context.APIContext) {
Type: models.UserTypeIndividual,
PageSize: com.StrTo(ctx.Query("limit")).MustInt(),
}
if opts.PageSize <= 0 {
opts.PageSize = 10
}
users, _, err := models.SearchUsers(opts)
if err != nil {