mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal: Handle case of empty item store when deleting (fixes #910)
This commit is contained in:
parent
83741da83a
commit
d7789712da
1 changed files with 7 additions and 1 deletions
|
@ -139,7 +139,13 @@ function archive:delete(username, query)
|
|||
if k ~= "end" then return nil, "unsupported-query-field"; end
|
||||
end
|
||||
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;
|
||||
end
|
||||
-- Store is empty
|
||||
return 0;
|
||||
end
|
||||
items = array(items);
|
||||
local count_before = #items;
|
||||
items:filter(function (item)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue