This commit is contained in:
Aevann1 2021-11-19 02:05:42 +02:00
parent ad5a0f71a4
commit c955478ab6
3 changed files with 12 additions and 12 deletions

View file

@ -535,8 +535,8 @@ def api_comment(v):
if user.id != v.id: notify_users.add(user.id)
if request.host == 'rdrama.net':
if 'aevann' in body_html.lower() and 1 not in notify_users: notify_users.add(1)
if 'joan' in body_html.lower() and 28 not in notify_users: notify_users.add(28)
if ('aevan' in body_html.lower() or 'avean' in body_html.lower()) and 1 not in notify_users: notify_users.add(1)
if ('joan' in body_html.lower() or 'pewkie' in body_html.lower()) and 28 not in notify_users: notify_users.add(28)
if 'carp' in body_html.lower() and 995 not in notify_users:
notify_users.add(995)
notify_users.add(541)
@ -786,8 +786,8 @@ def edit_comment(cid, v):
if user.id != v.id: notify_users.add(user.id)
if request.host == 'rdrama.net':
if 'aevann' in body_html.lower() and 1 not in notify_users: notify_users.add(1)
if 'joan' in body_html.lower() and 28 not in notify_users: notify_users.add(28)
if ('aevan' in body_html.lower() or 'avean' in body_html.lower()) and 1 not in notify_users: notify_users.add(1)
if ('joan' in body_html.lower() or 'pewkie' in body_html.lower()) and 28 not in notify_users: notify_users.add(28)
if 'carp' in body_html.lower() and 995 not in notify_users:
notify_users.add(995)
notify_users.add(541)