forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-08-19 14:46:22 +02:00
parent 73ae27e6c7
commit 5172210934
1 changed files with 4 additions and 7 deletions

View File

@ -286,10 +286,9 @@ def edit_post(pid, v):
p.body = body p.body = body
p.body_html = body_html p.body_html = body_html
title = filter_title(request.form.get("title")) title = request.form.get("title")
p.title = title p.title = title
p.title_html = title p.title_html = filter_title(title)
if int(time.time()) - p.created_utc > 60 * 3: p.edited_utc = int(time.time()) if int(time.time()) - p.created_utc > 60 * 3: p.edited_utc = int(time.time())
g.db.add(p) g.db.add(p)
@ -518,7 +517,7 @@ def filter_title(title):
@validate_formkey @validate_formkey
def submit_post(v): def submit_post(v):
title = filter_title(request.form.get("title", "")) title = request.form.get("title", "")
url = request.form.get("url", "") url = request.form.get("url", "")
@ -781,15 +780,13 @@ def submit_post(v):
url = url.replace("https://streamable.com/", "https://streamable.com/e/") url = url.replace("https://streamable.com/", "https://streamable.com/e/")
title_html = title
new_post_aux = SubmissionAux(id=new_post.id, new_post_aux = SubmissionAux(id=new_post.id,
url=url, url=url,
body=body, body=body,
body_html=body_html, body_html=body_html,
embed_url=embed, embed_url=embed,
title=title, title=title,
title_html=title_html title_html=filter_title(title)
) )
g.db.add(new_post_aux) g.db.add(new_post_aux)
g.db.flush() g.db.flush()