mod_storage_internal: Handle case of empty item store when deleting (fixes #910)

This commit is contained in:
Kim Alvefur 2017-05-14 17:31:50 +02:00
parent 83741da83a
commit d7789712da

View file

@ -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)