diff --git a/bookwyrm/activitypub/note.py b/bookwyrm/activitypub/note.py index ddb3f7ab9..ad08e3241 100644 --- a/bookwyrm/activitypub/note.py +++ b/bookwyrm/activitypub/note.py @@ -67,7 +67,7 @@ class Review(Comment): @dataclass(init=False) class Rating(Comment): - ''' a full book review ''' - rating: int = None + ''' just a star rating ''' + rating: int content: str = None type: str = 'Rating'