]> source.dussan.org Git - gitea.git/commitdiff
Fix list_options GetStartEnd (#16303)
authorsebastian-sauer <sauer.sebastian@gmail.com>
Tue, 29 Jun 2021 21:42:23 +0000 (23:42 +0200)
committerGitHub <noreply@github.com>
Tue, 29 Jun 2021 21:42:23 +0000 (22:42 +0100)
end is start + pageSize and not start + page

models/list_options.go

index 9cccd05465afe0a8c14d554bd4b8a03e10d74e59..ff02933f9bac41f2aefa415e289256e8f55c183c 100644 (file)
@@ -41,7 +41,7 @@ func (opts *ListOptions) setEnginePagination(e Engine) Engine {
 func (opts *ListOptions) GetStartEnd() (start, end int) {
        opts.setDefaultValues()
        start = (opts.Page - 1) * opts.PageSize
-       end = start + opts.Page
+       end = start + opts.PageSize
        return
 }