From 159e555d7c53e54761fc152b840728d6e2a8f07c Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Fri, 13 Jun 2025 11:33:21 -0400 Subject: [PATCH] [templates] Remove global counts from home page --- 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 40d519d..1b005d1 100644 --- a/vrobbler/apps/scrobbles/views.py +++ b/vrobbler/apps/scrobbles/views.py @@ -201,7 +201,7 @@ class RecentScrobbleList(ListView): processed_finished__isnull=True, user=self.request.user, ) - data["counts"] = scrobble_counts(user) + data["counts"] = [] #scrobble_counts(user) else: data["weekly_data"] = week_of_scrobbles() data["counts"] = scrobble_counts()