fix: typo
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2023-08-24 11:16:07 +02:00
parent 1b9c4204a8
commit 49d8713388
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ func getTasksWithRemindersDueAndTheirUsers(s *xorm.Session, now time.Time) (remi
// This ensures we send each reminder only once to each user
if seen[r.TaskID] == nil {
seen[r.Ta2skID] = make(map[int64]bool)
seen[r.TaskID] = make(map[int64]bool)
}
if _, exists := seen[r.TaskID][u.User.ID]; exists {