소스 검색

Update CommentPipeline, fix variable bug

Daniel Supernault 3 년 전
부모
커밋
0616a859d5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Jobs/CommentPipeline/CommentPipeline.php

+ 1 - 1
app/Jobs/CommentPipeline/CommentPipeline.php

@@ -91,7 +91,7 @@ class CommentPipeline implements ShouldQueue
 
             NotificationService::setNotification($notification);
             NotificationService::set($notification->profile_id, $notification->id);
-            StatusService::del($status->id);
+            StatusService::del($comment->id);
         });
     }
 }