From 1111932b8c91d5b585e0dfef2d7810adba1c22d5 Mon Sep 17 00:00:00 2001 From: justcool393 Date: Sun, 9 Oct 2022 13:13:55 -0700 Subject: [PATCH] remove weird random check if it's an issue we can readd it --- files/helpers/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/actions.py b/files/helpers/actions.py index c276114dd..b319f7ecc 100644 --- a/files/helpers/actions.py +++ b/files/helpers/actions.py @@ -248,7 +248,7 @@ def execute_zozbot(c, level, parent_submission, v): def execute_longpostbot(c, level, body, body_html, parent_submission, v): if not len(c.body.split()) >= 200: return - if "<" in body and "" in body_html: return + if "" in body_html: return body = random.choice(LONGPOST_REPLIES) if body.startswith('▼'): body = body[1:]