test controller

This commit is contained in:
2019-12-12 00:07:08 -06:00
parent 3bb922955e
commit 87f405d57e

View File

@@ -147,12 +147,12 @@ class LookupHelper {
}
public function GetCharacterInfo($charId) {
dd($charId);
//Check our own database first
$char = $this->LookupCharacter($charId, null);
//if the character was not found in the database, then get the information and store it in our database for later
if($char == null) {
dd($char);
try {
$response = $this->esi->invoke('get', '/characters/{character_id}/', [
'character_id' => $charId,