diff --git a/files/helpers/actions.py b/files/helpers/actions.py index 36f898e8a..c276114dd 100644 --- a/files/helpers/actions.py +++ b/files/helpers/actions.py @@ -247,7 +247,8 @@ def execute_zozbot(c, level, parent_submission, v): g.db.add(zozbot) def execute_longpostbot(c, level, body, body_html, parent_submission, v): - if not len(c.body.split()) >= 200 and "<" not in body and "" not in body_html: return + if not len(c.body.split()) >= 200: return + if "<" in body and "" in body_html: return body = random.choice(LONGPOST_REPLIES) if body.startswith('▼'): body = body[1:]