From 09a09b043dec130c1c87d579a981d9978ac5bbca Mon Sep 17 00:00:00 2001 From: Jack Date: Sun, 16 Aug 2020 02:54:42 +0100 Subject: [PATCH] fixed last month filter not working --- public/js/account.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/account.js b/public/js/account.js index 4e2f360d6..e3c07b003 100644 --- a/public/js/account.js +++ b/public/js/account.js @@ -1159,7 +1159,7 @@ function refreshAccountPage() { config.resultFilters.date.all || (config.resultFilters.date.last_day && timeSinceTest <= 86400) || (config.resultFilters.date.last_week && timeSinceTest <= 604800) || - (config.resultFilters.date.last_month && timeSinceTest <= 18144000) + (config.resultFilters.date.last_month && timeSinceTest <= 2592000) ) { datehide = false; }