From 685681617c063e061e69be54c9c94c8376818653 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Wed, 27 May 2020 03:57:23 -0500 Subject: [PATCH] stuff --- app/Jobs/Commands/Moons/FetchMoonLedgerJob.php | 2 +- app/Models/Moon/CorpMoonObserver.php | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/app/Jobs/Commands/Moons/FetchMoonLedgerJob.php b/app/Jobs/Commands/Moons/FetchMoonLedgerJob.php index 9aaba92d1..b358b55fb 100644 --- a/app/Jobs/Commands/Moons/FetchMoonLedgerJob.php +++ b/app/Jobs/Commands/Moons/FetchMoonLedgerJob.php @@ -123,7 +123,7 @@ class FetchMoonLedgerJob implements ShouldQueue $entries[] = [ 'corporation_id' => $corpInfo->corporation_id, 'corporation_name' => $corpInfo->name, - 'character_id' => $charInfo->character_id, + 'character_id' => $ledger->character_id, 'character_name' => $charInfo->name, 'observer_id' => $observer->observer_id, 'observer_name' => $observer->observer_name, diff --git a/app/Models/Moon/CorpMoonObserver.php b/app/Models/Moon/CorpMoonObserver.php index 2fd1efb6c..460d63bff 100644 --- a/app/Models/Moon/CorpMoonObserver.php +++ b/app/Models/Moon/CorpMoonObserver.php @@ -23,8 +23,6 @@ class CorpMoonObserver extends Model protected $fillable = [ 'corporation_id', 'corporation_name', - 'character_id', - 'character_name', 'observer_id', 'observer_name', 'observer_type',