fix wrong modmail if statement

pull/150/head
Aevann 2023-05-17 19:23:16 +03:00
parent 2067638d4c
commit 75cb768bed
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_NAME == 'watchpeopledie.tv':
if SITE == 'watchpeopledie.tv':
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_NAME == 'watchpeopledie.tv':
if SITE == 'watchpeopledie.tv':
admin_ids.remove(AEVANN_ID)
if parent.author.id not in admin_ids + [v.id]: