From ddf0a44cfeb95bcfd0ef043aa4f92381d74fb5d8 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 24 Sep 2021 05:03:31 +0200 Subject: [PATCH] sfd --- files/classes/comment.py | 4 ++-- files/routes/comments.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/files/classes/comment.py b/files/classes/comment.py index b1e497428..951b6c533 100644 --- a/files/classes/comment.py +++ b/files/classes/comment.py @@ -39,7 +39,7 @@ class Comment(Base): upvotes = Column(Integer, default=1) downvotes = Column(Integer, default=0) body = deferred(Column(String(20000))) - body_html = Column(String(40000)) + body_html = deferred(Column(String(40000))) ban_reason = Column(String(256)) post = relationship("Submission", viewonly=True) @@ -284,7 +284,7 @@ class Comment(Base): body = self.body_html if not body: return "" - + if not v or v.slurreplacer: for s, r in SLURS.items(): body = body.replace(s, r) diff --git a/files/routes/comments.py b/files/routes/comments.py index 089e99850..6cbda28fb 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -272,7 +272,7 @@ def api_comment(v): body_md = CustomRenderer().render(mistletoe.Document(body)) body_html = sanitize(body_md) - if len(body_html) > 20000: abort(400) + if len(body_html) > 40000: abort(400) c = Comment(author_id=v.id, parent_submission=parent_submission, @@ -691,7 +691,7 @@ def edit_comment(cid, v): body_md = CustomRenderer().render(mistletoe.Document(body)) body_html = sanitize(body_md) - if len(body_html) > 20000: abort(400) + if len(body_html) > 40000: abort(400) c.body = body[:10000] c.body_html = body_html