This commit is contained in:
2019-05-30 01:20:33 -05:00
parent 482c96f0f3
commit 378e00147e
2 changed files with 6 additions and 4 deletions

View File

@@ -65,7 +65,7 @@ class ProcessStructureJob implements ShouldQueue
//Setup the esi authentication container
$config = config('esi');
//Get the refresh token from the database
$token = EsiToken::where(['character_id' => $this->charId])->get(['refresh_token', 'id']);
$token = EsiToken::where(['character_id' => $this->charId])->get(['refresh_token']);
$authentication = new EsiAuthentication([
'client_id' => $config['client_id'],
'secret' => $config['secret'],