From 94820b1d9cd23bf4c49471752c3e98d1c40176fc Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sat, 19 Jul 2025 01:56:03 -0400 Subject: [PATCH] [scrobbles] Exclude geolocs from stop notifications --- vrobbler/apps/scrobbles/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/utils.py b/vrobbler/apps/scrobbles/utils.py index bf17b36..41bdef4 100644 --- a/vrobbler/apps/scrobbles/utils.py +++ b/vrobbler/apps/scrobbles/utils.py @@ -313,7 +313,7 @@ def send_stop_notifications_for_in_progress_scrobbles() -> int: scrobbles_in_progress_qs = Scrobble.objects.filter( played_to_completion=False, in_progress=True - ) + ).exclude(media_type=Scrobble.MediaType.GEO_LOCATION) notifications_sent = 0 for scrobble in scrobbles_in_progress_qs: