mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_internal: Return a noop iterator if archive is empty (fixes #920)
This commit is contained in:
parent
3e15f71ed1
commit
04d52fd099
1 changed files with 7 additions and 1 deletions
|
@ -62,7 +62,13 @@ end
|
||||||
|
|
||||||
function archive:find(username, query)
|
function archive:find(username, query)
|
||||||
local items, err = datamanager.list_load(username, host, self.store);
|
local items, err = datamanager.list_load(username, host, self.store);
|
||||||
if not items then return items, err; end
|
if not items then
|
||||||
|
if err then
|
||||||
|
return items, err;
|
||||||
|
else
|
||||||
|
return function () end, 0;
|
||||||
|
end
|
||||||
|
end
|
||||||
local count = #items;
|
local count = #items;
|
||||||
local i = 0;
|
local i = 0;
|
||||||
if query then
|
if query then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue