Skip to content

Commit

Permalink
pkp#8306 Patch for zero-length delimited identifier issue
Browse files Browse the repository at this point in the history
  • Loading branch information
touhidurabir committed Feb 16, 2023
1 parent 591dfcb commit 5a73ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/job/repositories/FailedJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function getRedispatchableJobsInQueue(string $queue = null, array $column

return $failedJobs->where(fn($query) => $query
->whereNotNull('payload')
->whereRaw('payload <> ""')
->whereRaw("payload <> ''")
)->get();
}

Expand Down

0 comments on commit 5a73ae1

Please sign in to comment.