Change GeoIP order (#297)

This commit is contained in:
Andreas Erhard 2021-06-10 16:13:13 +02:00 committed by GitHub
parent e21860f22e
commit 2e4ea13639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -145,8 +145,8 @@ sub register {
sub load_geoip {
my ( $self ) = @_;
$self->load_geoip1() and return 1;
$self->load_geoip2() and return 1;
$self->load_geoip1() and return 1;
return 0;
}