move blackjack

master
Aevann 2024-11-15 21:08:38 +02:00
parent f467fabe9d
commit d7bc4d2159
1 changed files with 2 additions and 3 deletions

View File

@ -1168,9 +1168,6 @@ def edit_post(pid, v):
p.body = body p.body = body
for text in [p.body, p.title, p.url]:
if execute_blackjack(v, p, text, 'post'): break
if len(body_html) > POST_BODY_HTML_LENGTH_LIMIT: if len(body_html) > POST_BODY_HTML_LENGTH_LIMIT:
stop(400, "Rendered post body is too long!") stop(400, "Rendered post body is too long!")
@ -1232,6 +1229,8 @@ def edit_post(pid, v):
if not p.draft and not complies_with_chud(p): if not p.draft and not complies_with_chud(p):
stop(403, f'You have to include "{p.author.chud_phrase}" in your post!') stop(403, f'You have to include "{p.author.chud_phrase}" in your post!')
for text in [p.body, p.title, p.url]:
if execute_blackjack(v, p, text, 'post'): break
if v.id == p.author_id: if v.id == p.author_id:
if not p.draft and int(time.time()) - p.created_utc > 60 * 3: if not p.draft and int(time.time()) - p.created_utc > 60 * 3: