mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal: Return error if 'before' or 'after' are not found (partial fix for #1325)
This commit is contained in:
parent
48d6fa1aa1
commit
b772308c93
1 changed files with 10 additions and 0 deletions
|
@ -161,20 +161,30 @@ function archive:find(username, query)
|
|||
if query.reverse then
|
||||
items:reverse();
|
||||
if query.before then
|
||||
local found = false;
|
||||
for j = 1, #items do
|
||||
if (items[j].key or tostring(j)) == query.before then
|
||||
found = true;
|
||||
i = j;
|
||||
break;
|
||||
end
|
||||
end
|
||||
if not found then
|
||||
return nil, "item-not-found";
|
||||
end
|
||||
end
|
||||
elseif query.after then
|
||||
local found = false;
|
||||
for j = 1, #items do
|
||||
if (items[j].key or tostring(j)) == query.after then
|
||||
found = true;
|
||||
i = j;
|
||||
break;
|
||||
end
|
||||
end
|
||||
if not found then
|
||||
return nil, "item-not-found";
|
||||
end
|
||||
end
|
||||
if query.limit and #items - i > query.limit then
|
||||
items[i+query.limit+1] = nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue