This commit is contained in:
2019-07-05 01:50:46 -05:00
parent dac296f8b9
commit ead25a3533

View File

@@ -86,10 +86,10 @@ class ProcessAssetsJob implements ShouldQueue
public function handle() public function handle()
{ {
//Declare the asset helper //Declare the asset helper
$aHelper = new AssetHelper($this->charId, $this->corpId); $aHelper = new AssetHelper($this->charId, $this->corpId, $this->page);
//Get a page of assets //Get a page of assets
$assets = $aHelper->GetAssetsByPage($this->page); $assets = $aHelper->GetAssetsByPage();
//Cycle through the assets, and attmept to store them. //Cycle through the assets, and attmept to store them.
foreach($assets as $asset) { foreach($assets as $asset) {