Skip to content

Commit

Permalink
Merge pull request #62 from it-goats/develop
Browse files Browse the repository at this point in the history
Fix checking notifications
  • Loading branch information
john-sonz committed Jun 19, 2022
2 parents 508e2c5 + c477198 commit c786c66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bode/bode/mail_service/sending.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def check_tasks_to_notify():

filters = [
Task.status == TaskStatus.TODO.value,
Task.due_date is not None,
Task.notify_before_minutes is not None,
Task.due_date.is_not(None),
Task.notify_before_minutes.is_not(None),
Task.due_date > now,
]

Expand Down

0 comments on commit c786c66

Please sign in to comment.