debugging

This commit is contained in:
2018-11-10 16:12:47 -06:00
parent 6e6c3ce921
commit 41caf80290
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@ class LoginController extends Controller
]);
} else { //If a token entry is not found, then we create a new token entry into the database
//Save the ESI Token in the database
$token = new App\Models\EsiToken;
$token = new EsiToken;
$token->character_id = $eve_user->id;
$token->access_token = $eve_user->token;
$token->refresh_token = $eve_user->refreshToken;