forked from MarseyWorld/MarseyWorld
master
parent
9f2ed94929
commit
517fedf558
|
@ -928,8 +928,9 @@ def pin_comment(cid, v):
|
||||||
|
|
||||||
g.db.add(comment)
|
g.db.add(comment)
|
||||||
|
|
||||||
if v.id != comment.author_id and not comment.post.ghost:
|
if v.id != comment.author_id:
|
||||||
message = f"@{v.username} (OP) has pinned your [comment]({comment.sl})!"
|
if comment.post.ghost: message = f"OP has pinned your [comment]({comment.sl})!"
|
||||||
|
else: message = f"@{v.username} (OP) has pinned your [comment]({comment.sl})!"
|
||||||
send_repeatable_notification(comment.author_id, message)
|
send_repeatable_notification(comment.author_id, message)
|
||||||
|
|
||||||
g.db.commit()
|
g.db.commit()
|
||||||
|
|
Loading…
Reference in New Issue