Fixed not getting all labels when retrieving a list with all tasks
This commit is contained in:
parent
eb279fdba3
commit
82f11c4ec2
1 changed files with 4 additions and 1 deletions
|
@ -413,7 +413,10 @@ func addMoreInfoToTasks(taskMap map[int64]*Task) (tasks []*Task, err error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get all labels for all the tasks
|
// Get all labels for all the tasks
|
||||||
labels, err := getLabelsByTaskIDs(&LabelByTaskIDsOptions{TaskIDs: taskIDs})
|
labels, err := getLabelsByTaskIDs(&LabelByTaskIDsOptions{
|
||||||
|
TaskIDs: taskIDs,
|
||||||
|
Page: -1,
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue