1
0

fix(view): correctly resolve bucket filter when paginating

(cherry picked from commit 45ff5907e69b24f00926841790d0f4f3d11e530a)
This commit is contained in:
kolaente
2024-09-13 19:45:48 +02:00
parent 6b850c56f7
commit 1049b27d37
2 changed files with 31 additions and 1 deletions

View File

@ -325,7 +325,6 @@ func getRawTasksForProjects(s *xorm.Session, projects []*Project, a web.Auth, op
}
func getTasksForProjects(s *xorm.Session, projects []*Project, a web.Auth, opts *taskSearchOptions, view *ProjectView) (tasks []*Task, resultCount int, totalItems int64, err error) {
tasks, resultCount, totalItems, err = getRawTasksForProjects(s, projects, a, opts)
if err != nil {
return nil, 0, 0, err