From 40028fa0771d8ae4b7ed857a8f6707e6852f0210 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sun, 22 Mar 2020 17:14:23 -0700 Subject: [PATCH] Fixes call to comment builder --- fedireads/status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedireads/status.py b/fedireads/status.py index 29185da42..5c67f016b 100644 --- a/fedireads/status.py +++ b/fedireads/status.py @@ -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()