Fixes call to comment builder

This commit is contained in:
Mouse Reeve 2020-03-22 17:14:23 -07:00
parent 51e7a50b86
commit 40028fa077

View file

@ -50,7 +50,7 @@ def create_comment_from_activity(author, activity):
published = activity.get('published')
remote_id = activity['id']
comment = create_comment(author, book, name, content, rating)
comment = create_comment(author, book, name, content)
comment.published_date = published
comment.remote_id = remote_id
comment.save()