aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-05-15 21:22:35 +0200
committerKim Alvefur <zash@zash.se>2020-05-15 21:22:35 +0200
commitf5d112f8329b0fa8968132911c681406b1e26933 (patch)
tree46c097f1ab7201080d420bd2e13cdd28f44d6add
parent5e6a56e92f366726f89a2d0aee091c3080b9eccd (diff)
downloadprosody-f5d112f8329b0fa8968132911c681406b1e26933.tar.gz
prosody-f5d112f8329b0fa8968132911c681406b1e26933.zip
mod_storage_internal: Fix error in time limited queries on items without 'when' field, fixes #1557
-rw-r--r--plugins/mod_storage_internal.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua
index 42b451bd..0becfc8f 100644
--- a/plugins/mod_storage_internal.lua
+++ b/plugins/mod_storage_internal.lua
@@ -104,12 +104,14 @@ function archive:find(username, query)
end
if query.start then
items:filter(function (item)
- return item.when >= query.start;
+ local when = item.when or datetime.parse(item.attr.stamp);
+ return when >= query.start;
end);
end
if query["end"] then
items:filter(function (item)
- return item.when <= query["end"];
+ local when = item.when or datetime.parse(item.attr.stamp);
+ return when <= query["end"];
end);
end
count = #items;