same as last commit

pull/211/head
Aevann 2023-10-04 22:45:18 +03:00
parent 4da6fadae6
commit c43e4c0f7d
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 v.shadowbanned) or g.db.query(User.admin_level).filter_by(id=uid).one()[0] >= PERMS['USER_SHADOWBAN']:
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']:
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 v.shadowbanned) or g.db.query(User.admin_level).filter_by(id=uid).one()[0] >= PERMS['USER_SHADOWBAN']:
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']:
return
cid = notif_comment(text)