mod_storage_memory: Return correct error even if no archive data available

This commit is contained in:
Kim Alvefur 2019-05-05 07:22:18 +02:00
parent d88db76a06
commit 63333b9063

View file

@ -91,6 +91,9 @@ function archive_store:find(username, query)
local items = self.store[username or NULL];
if not items then
if query then
if query.before or query.after then
return nil, "item-not-found";
end
if query.total then
return function () end, 0;
end