diff --git a/files/routes/comments.py b/files/routes/comments.py index 2bbedd576c..5e5ffc4b1e 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -601,8 +601,6 @@ def edit_comment(cid, v): if not c.author_id == v.id: abort(403) - if c.is_banned or c.deleted_utc > 0: abort(403) - body = request.values.get("body", "").strip()[:10000] if len(body) < 1: return {"error":"You have to actually type something!"}, 400