This commit is contained in:
2019-05-30 19:50:47 -05:00
parent 4f272fc3a1
commit 6e2c5a0ec7

View File

@@ -106,13 +106,14 @@ class GetStructuresCommand extends Command
Log::critical("Failed to get structure list.");
return null;
}
for($i = 1; $i <= $structures->pages; $i++) {
$job = new JobProcessStructure;
$job->charId = $charId;
$job->corpId = $corpId;
$job->page = $i;
ProcessStructureJob::dispatch($job)->onQueue('structures');
if(isset($structures)) {
for($i = 1; $i <= $structures->pages; $i++) {
$job = new JobProcessStructure;
$job->charId = $charId;
$job->corpId = $corpId;
$job->page = $i;
ProcessStructureJob::dispatch($job)->onQueue('structures');
}
}
//Mark the job as finished