modified the way characters are looked up in the database versus esi

This commit is contained in:
2019-12-11 23:47:24 -06:00
parent 3484ebf04e
commit 733841cfc1

View File

@@ -150,7 +150,7 @@ class LookupHelper {
//Check our own database first
$char = $this->LookupCharacter($charId, null);
dd($char);
//if the character was not found in the database, then get the information and store it in our database for later
if($char == null) {
@@ -163,6 +163,8 @@ class LookupHelper {
return null;
}
dd($character);
//Store the character in our database
$this->SaveCharacter($character, $charId);