From 2ddaf251eaca1458a3d9dcd201d7ea9a29de54ef Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Wed, 5 Dec 2018 14:18:47 -0600 Subject: [PATCH] modified FinanceHelper --- app/Library/FinanceHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Library/FinanceHelper.php b/app/Library/FinanceHelper.php index 2e9c00c5f..b7a9c8f71 100644 --- a/app/Library/FinanceHelper.php +++ b/app/Library/FinanceHelper.php @@ -132,7 +132,7 @@ class FinanceHelper { //For each journal entry, attempt to store it in the database. //The PutWalletJournal function checks to see if it's already in the database. foreach($wallet as $entry) { - if($entry['ref_type'] == 'brokers_fee' || $entry['ref_type'] == 'reprocessing_tax' || $entry['ref_type'] == 'acceleration_gate_fee') { + if($entry['ref_type'] == 'brokers_fee' || $entry['ref_type'] == 'reprocessing_tax' || $entry['ref_type'] == 'jumpgate_fee') { $this->PutWalletJournal($entry, $corpId, $division); } }