1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-18 19:52:26 +02:00

Default to null for invalid geoip queries #381

This commit is contained in:
Chaoyi Zha 2018-05-23 22:05:22 -04:00
parent 1fb607ba63
commit f9622d733b
2 changed files with 12 additions and 11 deletions

View File

@ -61,6 +61,7 @@ class StatsHelper {
->select(DB::raw("country AS label, count(*) AS clicks"))
->groupBy('country')
->orderBy('clicks', 'desc')
->whereNotNull('country')
->get();
return $stats;

View File

@ -126,18 +126,18 @@ return [
'default_location' => [
'ip' => '127.0.0.0',
'iso_code' => 'US',
'country' => 'United States',
'city' => 'New Haven',
'state' => 'CT',
'state_name' => 'Connecticut',
'postal_code' => '06510',
'lat' => 41.31,
'lon' => -72.92,
'timezone' => 'America/New_York',
'continent' => 'NA',
'iso_code' => null,
'country' => null,
'city' => null,
'state' => null,
'state_name' => null,
'postal_code' => null,
'lat' => 0,
'lon' => 0,
'timezone' => 'UTC',
'continent' => null,
'default' => true,
'currency' => 'USD',
'currency' => null,
],
];