don't print GeoIP country if not defined
If we don't get a result from the lookup, all we know is that we didn't get a result. Maybe an error, maybe the IP not in the database.
This commit is contained in:
parent
005c4d9105
commit
651ca986ff
@ -20,7 +20,8 @@ sub hook_connect {
|
||||
|
||||
my $geoip = Geo::IP->new(GEOIP_STANDARD);
|
||||
my $country =
|
||||
$geoip->country_code_by_addr( $self->qp->connection->remote_ip );
|
||||
$geoip->country_code_by_addr( $self->qp->connection->remote_ip )
|
||||
or return (DECLINED);
|
||||
|
||||
$self->qp->connection->notes('geoip_country', $country);
|
||||
$self->log(LOGNOTICE, "GeoIP Country: $country");
|
||||
|
Loading…
Reference in New Issue
Block a user