Browse Source

[templates] Remove global counts from home page

Colin Powell 2 months ago
parent
commit
159e555d7c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vrobbler/apps/scrobbles/views.py

+ 1 - 1
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()