forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-12-27 05:10:52 +02:00
parent 9a46fccd8e
commit 56692becb4
1 changed files with 0 additions and 2 deletions

View File

@ -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