mod_storage_internal: Return appropriate error even with empty archive

This commit is contained in:
Kim Alvefur 2019-05-05 07:24:12 +02:00
parent 63333b9063
commit 99f6c69507

View file

@ -125,6 +125,9 @@ function archive:find(username, query)
if err then
return items, err;
elseif query then
if query.before or query.after then
return nil, "item-not-found";
end
if query.total then
return function () end, 0;
end