From ad06534ab9aefd1010026372f1f4c0cfc7832eb8 Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 30 Aug 2023 16:10:30 +0300 Subject: [PATCH] opt-out instead of opt-in --- files/routes/static.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/static.py b/files/routes/static.py index 20b1589cd8..8319f13d79 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -297,7 +297,7 @@ def submit_contact(v): if AEVANN_ID in admin_ids: admin_ids.remove(AEVANN_ID) if 'delete' in new_comment.body.lower() and 'account' in new_comment.body.lower(): - admin_ids = [GTIX_ID] + admin_ids.remove(15447) for admin_id in admin_ids: notif = Notification(comment_id=new_comment.id, user_id=admin_id)