From 341117dfe9c60c2653c2d8429d7a3043afb83ff7 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Mon, 15 Mar 2021 20:56:28 +0900 Subject: [PATCH] fetch mining taxes ledger job cleanup --- app/Jobs/Commands/MiningTaxes/FetchMiningTaxesLedgersJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/Commands/MiningTaxes/FetchMiningTaxesLedgersJob.php b/app/Jobs/Commands/MiningTaxes/FetchMiningTaxesLedgersJob.php index 085068ceb..1e0a85b17 100644 --- a/app/Jobs/Commands/MiningTaxes/FetchMiningTaxesLedgersJob.php +++ b/app/Jobs/Commands/MiningTaxes/FetchMiningTaxesLedgersJob.php @@ -115,7 +115,7 @@ class FetchMiningTaxesLedgersJob implements ShouldQueue $response = $esi->page($currentPage) ->invoke('get', '/corporation/{corporation_id}/mining/observers/{observer_id}/', [ 'corporation_id' => $config['corporation'], - 'observer_id' => $obs->observer_id, + 'observer_id' => $this->observerId, ]); } catch(RequestFailedException $e) { Log::warning('Failed to get the mining ledger in FetchMiningTaxesLedgersCommand for observer id: ' . $this->observerId);