2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

93_DbLog: contrib 5.8.0

git-svn-id: https://svn.fhem.de/fhem/trunk@27144 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2023-01-29 10:04:02 +00:00
parent 5c95ebbcc6
commit 59e99b892a

View File

@ -6053,13 +6053,13 @@ sub _DbLog_createQuerySql {
my $current = $hash->{HELPER}{TC};
if ($opt eq 'dataRetrieval') {
$querytype = $a[1];
$device = $a[2];
$reading = $a[3];
$starttime = $a[4];
$endtime = $a[5];
$offset = $a[6];
$limit = $a[7];
$querytype = $a[1] // qq();
$device = $a[2] // qq();
$reading = $a[3] // qq();
$starttime = $a[4] // qq();
$endtime = $a[5] // qq();
$offset = $a[6] // qq();
$limit = $a[7] // qq();
$xaxis = 'TIMESTAMP';
if ($querytype eq 'last') {