[notifications] Fix a few typos

This commit is contained in:
2025-07-30 18:34:22 -04:00
parent c452ac24e0
commit a681b4d63b
2 changed files with 5 additions and 5 deletions

View File

@ -330,7 +330,7 @@ def send_mood_checkin_reminders() -> int:
now = timezone.now()
notifications_sent = 0
for profile in UserProfile.objects.filter(mood_checkin_enabled=True):
if profile.mood_checkin_period == "hourly" and now.minute == 0:
if profile.mood_checkin_frequency == "hourly" and now.minute == 0:
MoodNtfyNotification(profile).send()
notifications_sent += 1