job troubleshooting
This commit is contained in:
@@ -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');
|
||||
|
||||
@@ -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']);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user