From c6d3f2a582164f9a53fd2d0d1f60eab5c6b1c730 Mon Sep 17 00:00:00 2001 From: justcool393 Date: Wed, 26 Oct 2022 22:28:21 -0500 Subject: [PATCH] antispam: make bypass ids a set --- files/helpers/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/helpers/const.py b/files/helpers/const.py index 26922fe0af..605fbdb1f1 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -398,7 +398,7 @@ MAX_IMAGE_AUDIO_SIZE_MB_PATRON = 16 MAX_VIDEO_SIZE_MB = 32 MAX_VIDEO_SIZE_MB_PATRON = 64 -ANTISPAM_BYPASS_IDS = [] +ANTISPAM_BYPASS_IDS = () if SITE == 'rdrama.net': FEATURES['PRONOUNS'] = True @@ -442,7 +442,7 @@ if SITE == 'rdrama.net': GEESE_ID = 1710 BLACKJACKBTZ_ID = 12732 - ANTISPAM_BYPASS_IDS = [1703, 13427] + ANTISPAM_BYPASS_IDS = (1703, 13427) GIFT_NOTIF_ID = CARP_ID