From 06a59264dfca5c535b40d144c2460d9cdaa2a0b6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 3 Jun 2022 10:28:34 +0100 Subject: [PATCH] Additional reply indicators --- utils.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/utils.py b/utils.py index b741cb520..98f0136e2 100644 --- a/utils.py +++ b/utils.py @@ -3696,7 +3696,9 @@ def disallow_announce(content: str) -> bool: ':boosts_no:', 'dont_repeat', 'dont_announce', - 'dont_boost' + 'dont_boost', + 'do not boost', + "don't boost" ) for diss in disallow_strings: if diss in content: @@ -3714,7 +3716,9 @@ def disallow_reply(content: str) -> bool: ':no_reply:', ':no_replies:', ':replies_no:', - 'dont_at_me' + 'dont_at_me', + 'do not reply', + "don't reply" ) for diss in disallow_strings: if diss in content: