Skip to content

Commit

Permalink
[fix](killmails): Change is_nan to is_null (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
herpaderpaldent authored and warlof committed Dec 10, 2018
1 parent e396edd commit c841fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/Character/KillmailController.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public function getKillmailsData(int $character_id)
return DataTables::of($killmails)
->addColumn('victim', function ($row) {

if (is_nan($row->killmail_victim))
if (is_null($row->killmail_victim))
return '';

$character_id = $row->character_id;
Expand Down

0 comments on commit c841fbf

Please sign in to comment.