diff --git a/app/services/processor.py b/app/services/processor.py index e1a1473..b4ef549 100644 --- a/app/services/processor.py +++ b/app/services/processor.py @@ -153,10 +153,11 @@ def reply_comment_email(data): reader_email = get_email_metadata(message) if reader_email: notify_reader(from_email, reader_email, comment.site.token, - comment.url) + comment.site.url, comment.url) # notify subscribers every time a new comment is published - notify_subscribed_readers(comment.site.token, comment.site.url, comment.url) + notify_subscribed_readers( + comment.site.token, comment.site.url, comment.url) def get_email_metadata(message):