resolve conflict

remotes/1693176582716663532/tmp_refs/heads/watchparty
justcool393 2022-10-06 03:37:00 -07:00
parent 7fa874fd84
commit a30edea43d
1 changed files with 1 additions and 1 deletions

View File

@ -459,7 +459,7 @@ class User(Base):
posts = g.db.query(Submission.id).filter_by(author_id=self.id, is_pinned=False)
if not (v and (v.admin_level >= PERMS['POST_COMMENT_MODERATION'] or v.id == self.id)):
posts = posts.filter_by(is_banned=False, private=False, ghost=False)
posts = posts.filter_by(is_banned=False, private=False, ghost=False, deleted_utc=0)
posts = apply_time_filter(t, posts, Submission)