Skip to content

Commit 74442a6

Browse files
committed
Fix event job check
1 parent 931f04f commit 74442a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CloudTasksServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ private function registerDashboard(): void
194194
});
195195

196196
app('events')->listen(JobReleased::class, function (JobReleased $event) {
197-
if ($event->job instanceof CloudTasksJob) {
197+
if (!$event->job instanceof CloudTasksJob) {
198198
return;
199199
}
200200

0 commit comments

Comments
 (0)