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:
DS_Starter
2023-01-29 10:04:02 +00:00
parent b9605799f2
commit c77b86f7ea

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') {