Merge pull request #1126 from bookwyrm-social/deleted-ratings

Don't show deleted ratings in stars
This commit is contained in:
Mouse Reeve 2021-05-23 09:00:53 -07:00 committed by GitHub
commit c9b337348e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -25,6 +25,7 @@ def get_user_rating(book, user):
user=user,
book=book,
rating__isnull=False,
deleted=False,
)
.order_by("-published_date")
.first()

View file

@ -62,6 +62,7 @@ class Shelf(View):
user=user,
rating__isnull=False,
book__id=OuterRef("id"),
deleted=False,
).order_by("-published_date")
if not is_self: