This commit is contained in:
2019-12-01 03:10:24 -06:00
parent 4932d4d8e7
commit 75c3f2a522
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ class BlacklistController extends Controller
$count = BlacklistUser::where([ $count = BlacklistUser::where([
'name' => $request->name, 'name' => $request->name,
])->count(); ])->count();
dd($count);
//If the count is 0, then add the character to the blacklist //If the count is 0, then add the character to the blacklist
if($count === 0) { if($count === 0) {
//Get the character id from the universe end point //Get the character id from the universe end point

View File

@@ -89,7 +89,7 @@ class NewLookupHelper {
if(isset($response->characters[0]->id)) { if(isset($response->characters[0]->id)) {
$this->StoreCharacterLookup($response->characters[0]->id, null); $this->StoreCharacterLookup($response->characters[0]->id, null);
dd($response);
return $response->characters[0]->id; return $response->characters[0]->id;
} else { } else {
return -1; return -1;