Merge branch 'snow' of https://github.com/Aevann1/Drama into snow

remotes/1693045480750635534/spooky-22
Aevann1 2021-12-14 02:56:05 +02:00
commit d00e597a00
2 changed files with 2 additions and 2 deletions

View File

@ -242,7 +242,7 @@ class Comment(Base):
'permalink': self.permalink,
'is_pinned': self.is_pinned,
'distinguish_level': self.distinguish_level,
'post_id': self.post.id,
'post_id': self.post.id if self.post else 0,
'score': self.score,
'upvotes': self.upvotes,
'downvotes': self.downvotes,

View File

@ -229,7 +229,7 @@ class Submission(Base):
flags = {}
for f in self.flags: flags[f.user.username] = f.reason
data = {'author_name': self.author.username,
data = {'author_name': self.author.username if self.author else '',
'permalink': self.permalink,
'is_banned': bool(self.is_banned),
'deleted_utc': self.deleted_utc,