This commit is contained in:
Aevann1 2022-01-25 20:31:24 +02:00
parent fb95e99910
commit b3eef22afa

View file

@ -787,8 +787,7 @@ def undelete_comment(cid, v):
c = g.db.query(Comment).filter_by(id=cid).one_or_none() c = g.db.query(Comment).filter_by(id=cid).one_or_none()
if not c: if not c: abort(404)
abort(404)
if c.author_id != v.id: if c.author_id != v.id:
abort(403) abort(403)
@ -810,6 +809,8 @@ def pin_comment(cid, v):
comment = get_comment(cid, v=v) comment = get_comment(cid, v=v)
if not comment: abort(404)
if v.id != comment.post.author_id: abort(403) if v.id != comment.post.author_id: abort(403)
comment.is_pinned = v.username + " (OP)" comment.is_pinned = v.username + " (OP)"
@ -830,6 +831,8 @@ def unpin_comment(cid, v):
comment = get_comment(cid, v=v) comment = get_comment(cid, v=v)
if not comment: abort(404)
if v.id != comment.post.author_id: abort(403) if v.id != comment.post.author_id: abort(403)
if not comment.is_pinned.endswith(" (OP)"): if not comment.is_pinned.endswith(" (OP)"):