job troubleshooting

This commit is contained in:
2019-05-04 00:10:20 -05:00
parent 9a4271bf0d
commit 99b5004e3d
2 changed files with 2 additions and 2 deletions

View File

@@ -340,7 +340,7 @@ class FinanceHelper {
$lookups = new LookupHelper;
//Reference to see if the character is in our look up table for corporations and characters
$corpId = $lookups->LookupCorporation($charId);
$corpId = $lookups->LookupCorporationId($charId);
//Create an ESI authentication container
$config = config('esi');

View File

@@ -97,7 +97,7 @@ class LookupHelper {
}
}
public function LookupCorporation($charId) {
public function LookupCorporationId($charId) {
//Check for the character in the user_to_corporation table
$found = CharacterToCorporation::where('character_id', $charId)->get(['corporation_id']);