job troubleshooting

This commit is contained in:
2019-05-04 00:09:13 -05:00
parent 9cfd5a1a83
commit 9a4271bf0d
3 changed files with 41 additions and 8 deletions
@@ -338,14 +338,9 @@ class FinanceHelper {
//Declare the lookup class helper
$lookups = new LookupHelper;
//If the token is not found, send the user an eve mail, and just exit out of the function
if($this->TokenNotFound($token, $scope, $charId)) {
return null;
}
//Reference to see if the character is in our look up table for corporations and characters
$corpId = $lookups->LookupCharacter($charId);
$corpId = $lookups->LookupCorporation($charId);
//Create an ESI authentication container
$config = config('esi');