master
Aevann1 2021-09-09 00:09:45 +02:00
parent 83e20cd465
commit 5342ad2dd9
1 changed files with 2 additions and 10 deletions

View File

@ -876,16 +876,8 @@ def toggle_comment_pin(cid, v):
)
g.db.add(ma)
html=render_template(
"comments.html",
v=v,
comments=[comment],
render_replies=False,
)
html=str(BeautifulSoup(html, features="html.parser").find(id=f"comment-{comment.id}-only"))
return html
if comment.is_pinned: return {"message": "Comment pinned!"}
else: return {"message": "Comment unpinned!"}
@app.post("/save_comment/<cid>")