Browse Source

Use timestamp to get latest scrobble for media type

Colin Powell 1 year ago
parent
commit
0505d01b71
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vrobbler/apps/scrobbles/models.py

+ 1 - 1
vrobbler/apps/scrobbles/models.py

@@ -705,7 +705,7 @@ class Scrobble(TimeStampedModel):
                 media_query,
                 user_id=user_id,
             )
-            .order_by("-modified")
+            .order_by("-timestamp")
             .first()
         )