mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
331f2d40e1
commit
1768a2f369
1 changed files with 2 additions and 6 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue