[templates] Remove global counts from home page

This commit is contained in:
2025-06-13 11:33:21 -04:00
parent 981f4f9c9a
commit 159e555d7c

View File

@ -201,7 +201,7 @@ class RecentScrobbleList(ListView):
processed_finished__isnull=True, processed_finished__isnull=True,
user=self.request.user, user=self.request.user,
) )
data["counts"] = scrobble_counts(user) data["counts"] = [] #scrobble_counts(user)
else: else:
data["weekly_data"] = week_of_scrobbles() data["weekly_data"] = week_of_scrobbles()
data["counts"] = scrobble_counts() data["counts"] = scrobble_counts()