This commit is contained in:
Aevann1 2021-09-09 00:09:45 +02:00
parent cf2221c056
commit 3e0b3ed94c

View file

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