forked from rDrama/rDrama
1
0
Fork 0

make report notifs not work when sent by muted person

master
Aevann 2023-11-18 15:20:21 +02:00
parent c1703d8ac2
commit 6b63514d8e
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ def report_post(pid, v):
report = Report(post_id=post.id, user_id=v.id, reason=reason_html)
g.db.add(report)
if v.id != post.author_id and not post.author.has_blocked(v):
if v.id != post.author_id and not post.author.has_blocked(v) and not post.author.has_muted(v):
message = f'@{v.username} reported [{post.title}]({post.shortlink})\n\n> {reason}'
send_repeatable_notification(post.author_id, message)
@ -99,7 +99,7 @@ def report_comment(cid, v):
report = CommentReport(comment_id=comment.id, user_id=v.id, reason=reason_html)
g.db.add(report)
if v.id != comment.author_id and not comment.author.has_blocked(v):
if v.id != comment.author_id and not comment.author.has_blocked(v) and not comment.author.has_muted(v):
message = f'@{v.username} reported your [comment]({comment.shortlink})\n\n> {reason}'
send_repeatable_notification(comment.author_id, message)