diff --git a/pkg/models/tasks.go b/pkg/models/tasks.go index 1d2e5b27c7..faf2fc4faf 100644 --- a/pkg/models/tasks.go +++ b/pkg/models/tasks.go @@ -164,6 +164,11 @@ func (t *Task) ReadAll(a web.Auth, search string, page int, perPage int) (result func getRawTasksForLists(lists []*List, opts *taskOptions) (tasks []*Task, resultCount int, totalItems int64, err error) { + // If the user does not have any lists, don't try to get any tasks + if len(lists) == 0 { + return nil, 0, 0, nil + } + // Set the default concatinator of filter variables to or if none was provided if opts.filterConcat == "" { opts.filterConcat = filterConcatOr