Skip to content

Commit

Permalink
Fix a notification issue with extend
Browse files Browse the repository at this point in the history
Notifications were not getting properly reset.  This should fix that.

Fixes: #551
Change-Id: I5982505cfeaa7d82f354dfbc8082813c6667683b
  • Loading branch information
kambiz-aghaiepour committed Nov 8, 2024
1 parent 2419f3a commit ab573c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/quads/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,10 +656,10 @@ def action_extend(self):

if not check:
data = {
"one_day": False,
"three_days": False,
"five_days": False,
"seven_days": False,
"one_day": "False",
"three_days": "False",
"five_days": "False",
"seven_days": "False",
}
try:
self.quads.update_notification(schedules[0].assignment.notification.id, data)
Expand Down

0 comments on commit ab573c5

Please sign in to comment.