mod_storage_internal: Fix off-by-one when searching archive for

Fixes a test case provided by MattJ where the very first item matched by
a 'start' timestamp was not returned.
This commit is contained in:
Kim Alvefur 2024-02-15 20:28:14 +01:00
parent 331f2d40e1
commit 1768a2f369

View file

@ -200,15 +200,11 @@ function archive:find(username, query)
end
if query.start then
if not query.reverse then
local wi, exact = binary_search(list, function(item)
local wi = binary_search(list, function(item)
local when = item.when or datetime.parse(item.attr.stamp);
return query.start - when;
end);
if exact then
i = wi - 1;
elseif wi then
i = wi;
end
i = wi - 1;
else
iter = it.filter(function(item)
local when = item.when or datetime.parse(item.attr.stamp);