consistency in return error and returned status code

remotes/1693176582716663532/tmp_refs/heads/watchparty
justcool393 2022-10-05 01:19:45 -07:00
parent 88ae00deef
commit 2a53df20ff
1 changed files with 3 additions and 2 deletions

View File

@ -668,7 +668,7 @@ def submit_post(v, sub=None):
body = sanitize_raw_body(request.values.get("body", ""))
def error(error):
if request.headers.get("Authorization") or request.headers.get("xhr"): return {"error": error}, 403
if request.headers.get("Authorization") or request.headers.get("xhr"): return {"error": error}, 400
SUBS = [x[0] for x in g.db.query(Sub.name).order_by(Sub.name).all()]
return render_template("submit.html", SUBS=SUBS, v=v, error=error, title=title, url=url, body=body), 400
@ -679,7 +679,8 @@ def submit_post(v, sub=None):
title_html = filter_emojis_only(title, graceful=True, count_marseys=True, torture=torture)
if v.marseyawarded and not marseyaward_title_regex.fullmatch(title_html):
return error("You can only type marseys!")
if len(title_html) > 1500: return error("Rendered title is too big!")
if len(title_html) > 1500:
return error("Rendered title is too big!")
sub = request.values.get("sub", "").lower().replace('/h/','').strip()