Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2018-05-24 05:05:22 +0300
committerChaoyi Zha <summermontreal@gmail.com>2018-05-24 05:05:40 +0300
commitf9622d733b554154a39e9a716c5c134da35acba7 (patch)
tree973e31017e989b6fbde51ca8434d1ab8e6fab71c /app
parent1fb607ba631cf9a6c9eb7ed922bf723d2dfe03f3 (diff)
Default to null for invalid geoip queries #381
Diffstat (limited to 'app')
-rw-r--r--app/Helpers/StatsHelper.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Helpers/StatsHelper.php b/app/Helpers/StatsHelper.php
index d1b4716..af57cce 100644
--- a/app/Helpers/StatsHelper.php
+++ b/app/Helpers/StatsHelper.php
@@ -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;