From 7cdd9cea2c74cbcfd5eafcd9aeeecb8e197b1c24 Mon Sep 17 00:00:00 2001 From: Dominik Pfennig <dominik@suma-ev.de> Date: Wed, 10 May 2017 14:27:52 +0200 Subject: [PATCH] Weiteren Bug gefixt --- app/Jobs/Searcher.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/Jobs/Searcher.php b/app/Jobs/Searcher.php index ba00d6cf4..da4818c18 100644 --- a/app/Jobs/Searcher.php +++ b/app/Jobs/Searcher.php @@ -119,8 +119,10 @@ class Searcher implements ShouldQueue } } private function updateStats($poptime){ - $connectionInfo = base64_encode(json_encode($this->connectionInfo)); - Redis::hset($this->name . ".stats", $this->pid, $connectionInfo . ";" . $poptime); + if($this->connectionInfo !== NULL){ + $connectionInfo = base64_encode(json_encode($this->connectionInfo)); + Redis::hset($this->name . ".stats", $this->pid, $connectionInfo . ";" . $poptime); + } } private function getFetchTime(){ -- GitLab