From 733841cfc1b1add9207ea9e4e03f217d70f0189b Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Wed, 11 Dec 2019 23:47:24 -0600 Subject: [PATCH] modified the way characters are looked up in the database versus esi --- app/Library/Lookups/LookupHelper.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Library/Lookups/LookupHelper.php b/app/Library/Lookups/LookupHelper.php index 202445132..d2b85f4c2 100644 --- a/app/Library/Lookups/LookupHelper.php +++ b/app/Library/Lookups/LookupHelper.php @@ -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);