From bfcfc2015a0dfd18b0def76393ae4c970998e92d Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Sat, 18 Nov 2023 03:36:13 +0800 Subject: [PATCH] Update index.py --- plugins/webstats/index.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/webstats/index.py b/plugins/webstats/index.py index 0fa95627e..e6dc9d9c5 100755 --- a/plugins/webstats/index.py +++ b/plugins/webstats/index.py @@ -747,7 +747,8 @@ def getLogsList(): if request_time != "all": request_time_s = request_time.strip().split('-') if len(request_time_s) == 2: - conn = conn.andWhere("request_time>=? and request_time=?", (request_time[0],)) + conn = conn.andWhere("request_time=?", (request_time,))