[webpages] Fix lookup key for scrobbles

This commit is contained in:
2024-02-12 23:06:29 -05:00
parent ff18ad8efc
commit 4e330a6f03

View File

@ -64,7 +64,7 @@ class WebPage(ScrobblableMixin):
def scrobbles(self, user):
Scrobble = apps.get_model("scrobbles", "Scrobble")
return Scrobble.objects.filter(user=user, webpage=self).order_by(
return Scrobble.objects.filter(user=user, web_page=self).order_by(
"-timestamp"
)