From 520554d1004b94fa2d076bc0e0a92788a1f564f5 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 21 Jan 2022 23:18:53 +0200 Subject: [PATCH] fdfd --- files/routes/posts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/posts.py b/files/routes/posts.py index f1bfb4af2e..12f89f955b 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -1088,7 +1088,7 @@ def submit_post(v): new_post.voted = 1 if 'megathread' in new_post.title.lower(): sort = 'new' else: sort = v.defaultsortingcomments - if c: new_post.replies = [c] + if len(body_html) < 40000: new_post.replies = [c] return render_template('submission.html', v=v, p=new_post, sort=sort, render_replies=True, offset=0, success=True)