diff --git a/files/classes/comment.py b/files/classes/comment.py index c08022c83c..b3f680ee48 100644 --- a/files/classes/comment.py +++ b/files/classes/comment.py @@ -246,7 +246,7 @@ class Comment(Base): return self.child_comments.order_by(Comment.id).all() comments = self.child_comments.filter(Comment.author_id.notin_((AUTOPOLLER_ID, AUTOBETTER_ID, AUTOCHOICE_ID))) - return sort_comments(sort, comments) + return sort_comments(sort, comments).all() @property