diff --git a/app/Jobs/CommentPipeline/CommentPipeline.php b/app/Jobs/CommentPipeline/CommentPipeline.php index 78090cd1a..cb4100f48 100644 --- a/app/Jobs/CommentPipeline/CommentPipeline.php +++ b/app/Jobs/CommentPipeline/CommentPipeline.php @@ -56,13 +56,11 @@ class CommentPipeline implements ShouldQueue $status = $this->status; $comment = $this->comment; - // Verify status exists + // Verify status and comment exists if (!$status) { Log::info("CommentPipeline: Status no longer exists, skipping job"); return; } - - // Verify comment exists if (!$comment) { Log::info("CommentPipeline: Comment no longer exists, skipping job"); return;