From e360e3edbdf336db7756c172b0baef4b74ac94ee Mon Sep 17 00:00:00 2001 From: DL6ER Date: Sun, 12 Nov 2023 21:18:52 +0100 Subject: [PATCH] Fix query logs "all time" option Signed-off-by: DL6ER --- scripts/pi-hole/js/queries.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/pi-hole/js/queries.js b/scripts/pi-hole/js/queries.js index cc169a73..1e77f325 100644 --- a/scripts/pi-hole/js/queries.js +++ b/scripts/pi-hole/js/queries.js @@ -7,8 +7,8 @@ /* global moment:false, utils:false */ -const beginningOfTime = 1262304000; // Jan 01 2010, 00:00 -const endOfTime = 2147483647; // Jan 19, 2038, 03:14 +const beginningOfTime = 1262304000000; // Jan 01 2010, 00:00 +const endOfTime = 2147483647000; // Jan 19, 2038, 03:14 var from = beginningOfTime; var until = endOfTime;