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',