Skip to content

Commit

Permalink
Sec times a charm
Browse files Browse the repository at this point in the history
  • Loading branch information
magicbug committed Feb 19, 2024
1 parent ab90cf9 commit ab7a931
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion application/libraries/DxccFlag.php
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,10 @@ class DxccFlag

public function get($dxcc)
{
return $this->dxccFlags[$dxcc];
if (!isset($this->dxccFlags[$dxcc])) {
return null;
} else {
return $this->dxccFlags[$dxcc];
}
}
}

0 comments on commit ab7a931

Please sign in to comment.