mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_storage_memory: Return correct error even if no archive data available
This commit is contained in:
parent
d88db76a06
commit
63333b9063
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue