Forráskód Böngészése

Update CommentPipeline, do not send notifications for self comments

Daniel Supernault 7 éve
szülő
commit
f64cf90dda
1 módosított fájl, 4 hozzáadás és 0 törlés
  1. 4 0
      app/Jobs/CommentPipeline/CommentPipeline.php

+ 4 - 0
app/Jobs/CommentPipeline/CommentPipeline.php

@@ -42,6 +42,10 @@ class CommentPipeline implements ShouldQueue
         $target = $status->profile;
         $target = $status->profile;
         $actor = $comment->profile;
         $actor = $comment->profile;
 
 
+        if($actor->id === $target->id) {
+            return true;
+        }
+
         try {
         try {
 
 
             $notification = new Notification;
             $notification = new Notification;