fix 500 error

pull/152/head
Aevann 2023-05-20 03:16:45 +03:00
parent f5fde6b4c7
commit 0f6b36f40b
2 changed files with 2 additions and 2 deletions

View File

@ -282,7 +282,7 @@ def submit_contact(v):
new_comment.top_comment_id = new_comment.id
admin_ids = [x[0] for x in g.db.query(User.id).filter(User.admin_level >= PERMS['NOTIFICATIONS_MODMAIL']).all()]
if SITE == 'watchpeopledie.tv':
if SITE == 'watchpeopledie.tv' and AEVANN_ID in admin_ids:
admin_ids.remove(AEVANN_ID)
for admin_id in admin_ids:

View File

@ -666,7 +666,7 @@ def messagereply(v:User):
if top_comment.sentto == MODMAIL_ID:
admin_ids = [x[0] for x in g.db.query(User.id).filter(User.admin_level >= PERMS['NOTIFICATIONS_MODMAIL'], User.id != v.id).all()]
if SITE == 'watchpeopledie.tv':
if SITE == 'watchpeopledie.tv' and AEVANN_ID in admin_ids:
admin_ids.remove(AEVANN_ID)
if parent.author.id not in admin_ids + [v.id]: