1
0

fix: lint

This commit is contained in:
kolaente
2023-10-10 20:35:43 +02:00
parent c9aec495d5
commit 56625b0b90
11 changed files with 31 additions and 31 deletions

View File

@ -117,10 +117,10 @@ func getTaskUsersForTasks(s *xorm.Session, taskIDs []int64, cond builder.Cond) (
return
}
for _, assignee := range assignees {
for i := range assignees {
taskUsers = append(taskUsers, &taskUser{
Task: taskMap[assignee.TaskID],
User: &assignee.User,
Task: taskMap[assignees[i].TaskID],
User: &assignees[i].User,
})
}