Skip to content

Commit

Permalink
Merge pull request #511 from derekmd/fix-failed-jobs-empty-results
Browse files Browse the repository at this point in the history
[2.0] Fix Failed Jobs page showing no results when failed jobs do exist
  • Loading branch information
taylorotwell authored Feb 12, 2019
2 parents b36c97e + 5c3a9ec commit dad81ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Repositories/RedisJobRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public function getJobs(array $ids, $indexFrom = 0)
$job = is_array($job) ? array_values($job) : null;

return is_array($job) && $job[0] !== null;
}), $indexFrom);
})->values(), $indexFrom);
}

/**
Expand Down

0 comments on commit dad81ee

Please sign in to comment.