From 88fd0ed7f81c6e65415177a22fdb63997e979a65 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 27 May 2026 21:52:40 -0400 Subject: [PATCH] [moods] Checkin notification should use correct link --- vrobbler/apps/scrobbles/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/notifications.py b/vrobbler/apps/scrobbles/notifications.py index ef0f4bc..64be2a9 100644 --- a/vrobbler/apps/scrobbles/notifications.py +++ b/vrobbler/apps/scrobbles/notifications.py @@ -83,7 +83,7 @@ class MoodNtfyNotification(BasicNtfyNotification): def __init__(self, profile, **kwargs): super().__init__(profile) self.ntfy_str: str = "Would you like to check in about your mood?" - self.click_url = self.url_tmpl.format(path=reverse("moods:mood_list")) + self.click_url = self.url_tmpl.format(path=reverse("moods:checkin")) self.title = "Mood Check-in!" def send(self):