diff --git a/drama/classes/comment.py b/drama/classes/comment.py index 54eae146e..99cd58c63 100644 --- a/drama/classes/comment.py +++ b/drama/classes/comment.py @@ -156,7 +156,8 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing): 'upvotes': self.upvotes_fuzzed, 'downvotes': self.downvotes_fuzzed, #'award_count': self.award_count, - 'is_bot': self.is_bot + 'is_bot': self.is_bot, + 'flags': self.flags, } if self.ban_reason: diff --git a/drama/classes/submission.py b/drama/classes/submission.py index 8c2f3cbf1..ac330635c 100644 --- a/drama/classes/submission.py +++ b/drama/classes/submission.py @@ -240,7 +240,8 @@ class Submission(Base, Stndrd, Age_times, Scores, Fuzzing): #'award_count': self.award_count, 'meta_title': self.meta_title, 'meta_description': self.meta_description, - 'voted': self.voted + 'voted': self.voted, + 'flags': self.flags, } if self.ban_reason: data["ban_reason"]=self.ban_reason