fix notifs

pull/211/head
Aevann 2023-10-05 10:38:35 +03:00
parent be421a30bf
commit 99a3aba578
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ def create_comment(text_html):
def send_repeatable_notification(uid, text):
if uid in BOT_IDs: return
if not (hasattr(g, 'v') and g.v and g.v.shadowbanned) or g.db.query(User.admin_level).filter_by(id=uid).one()[0] >= PERMS['USER_SHADOWBAN']:
if hasattr(g, 'v') and g.v and g.v.shadowbanned and g.db.query(User.admin_level).filter_by(id=uid).one()[0] < PERMS['USER_SHADOWBAN']:
return
text_html = sanitize(text, blackjack="notification")
@ -57,7 +57,7 @@ def send_repeatable_notification(uid, text):
def send_notification(uid, text):
if uid in BOT_IDs: return
if not (hasattr(g, 'v') and g.v and g.v.shadowbanned) or g.db.query(User.admin_level).filter_by(id=uid).one()[0] >= PERMS['USER_SHADOWBAN']:
if hasattr(g, 'v') and g.v and g.v.shadowbanned and g.db.query(User.admin_level).filter_by(id=uid).one()[0] < PERMS['USER_SHADOWBAN']:
return
cid = notif_comment(text)