From b47276cacd82263b76d39a11acaae4292ec8b096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Arthur=20Ger=C3=B4nimo?= <guilherme.geronimo@ufsc.br> Date: Wed, 22 Nov 2023 00:42:59 +0000 Subject: [PATCH] Fixing #6 --- bin/smartdata/Backend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/smartdata/Backend.php b/bin/smartdata/Backend.php index 36ad75a..adab199 100644 --- a/bin/smartdata/Backend.php +++ b/bin/smartdata/Backend.php @@ -3219,7 +3219,7 @@ class Backend_V1_1 extends Backend_Common $smartdata = new StaticSmartData($series->unit,$value,$error,$conf,$x,$y,$z,$time,$d,$gw); break; case SmartData::MOBILE_VERSION: - $smartdata = new MobileSmartData($series->unit,$value,$error,$conf,$x,$y,$z,$time,$d,$gw, null); + $smartdata = new MobileSmartData($series->unit, $value, $error, $conf, $x, $y, $z, $time, $d, $gw, $series->signature ); break; default: continue 2; -- GitLab