Use timestamp to get latest scrobble for media type

This commit is contained in:
2023-11-26 20:53:31 +01:00
parent aae2dd7567
commit 0505d01b71

View File

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