Skip to content

Commit 4415b94

Browse files
committed
fix breaking change
1 parent 524b1b3 commit 4415b94

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Illuminate/Queue/Console/RetryCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,10 @@ protected function refreshRetryUntil($payload)
126126
{
127127
$payload = json_decode($payload, true);
128128

129+
if (! isset($payload['data']['command'])) {
130+
return json_encode($payload);
131+
}
132+
129133
$instance = unserialize($payload['data']['command']);
130134

131135
if (is_object($instance) && method_exists($instance, 'retryUntil')) {

0 commit comments

Comments
 (0)