We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 524b1b3 commit 4415b94Copy full SHA for 4415b94
src/Illuminate/Queue/Console/RetryCommand.php
@@ -126,6 +126,10 @@ protected function refreshRetryUntil($payload)
126
{
127
$payload = json_decode($payload, true);
128
129
+ if (! isset($payload['data']['command'])) {
130
+ return json_encode($payload);
131
+ }
132
+
133
$instance = unserialize($payload['data']['command']);
134
135
if (is_object($instance) && method_exists($instance, 'retryUntil')) {
0 commit comments