diff --git a/app/Jobs/CommentPipeline/CommentPipeline.php b/app/Jobs/CommentPipeline/CommentPipeline.php index fb0de7ebb..e220709d1 100644 --- a/app/Jobs/CommentPipeline/CommentPipeline.php +++ b/app/Jobs/CommentPipeline/CommentPipeline.php @@ -42,6 +42,10 @@ class CommentPipeline implements ShouldQueue $target = $status->profile; $actor = $comment->profile; + if($actor->id === $target->id) { + return true; + } + try { $notification = new Notification;