From 72fd1ab90e0ac6e0fbbd3aff4b42c8a3157ea91e Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 27 May 2026 14:27:37 -0400 Subject: [PATCH] [calendar] Kidding, only locations without a title --- vrobbler/apps/scrobbles/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/views.py b/vrobbler/apps/scrobbles/views.py index f8955c2..46823de 100644 --- a/vrobbler/apps/scrobbles/views.py +++ b/vrobbler/apps/scrobbles/views.py @@ -1376,7 +1376,7 @@ class ScrobbleCalendarView(LoginRequiredMixin, TemplateView): timestamp__date__gte=month_start, timestamp__date__lte=month_end, ) - .exclude(media_type="GeoLocation") + .exclude(media_type="GeoLocation", title__isnull=True) .annotate(local_date=TruncDate("timestamp", tzinfo=timezone.get_current_timezone())) .values("local_date") .annotate(count=Count("id"))