From 1ec22b3d0c56fcee53d832011672003aa7ac8f86 Mon Sep 17 00:00:00 2001 From: xiphon Date: Tue, 13 Aug 2019 14:25:16 +0000 Subject: [PATCH] history: fix start/end of the day calculation, apply local timezone --- pages/History.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pages/History.qml b/pages/History.qml index 97b26fa2..4a1d9515 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -1361,8 +1361,9 @@ Rectangle { // applying filters root.txData = JSON.parse(JSON.stringify(root.txModelData)); // deepcopy - var fromDate = fromDatePicker.currentDate.getTime() / 1000; - var toDate = toDatePicker.currentDate.getTime() / 1000; + const timezoneOffset = new Date().getTimezoneOffset() * 60; + var fromDate = Math.floor(fromDatePicker.currentDate.getTime() / 86400000) * 86400 + timezoneOffset; + var toDate = (Math.floor(toDatePicker.currentDate.getTime() / 86400000) + 1) * 86400 + timezoneOffset; var txs = []; for (var i = 0; i < root.txData.length; i++){