mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.pubsub: Return an empty list if specific item asked for does not exist (thanks jonasw)
This commit is contained in:
parent
48726b9585
commit
ec998641fd
1 changed files with 1 additions and 1 deletions
|
@ -338,7 +338,7 @@ function service:get_items(node, actor, id)
|
|||
if id then -- Restrict results to a single specific item
|
||||
local with_id = self.data[node]:get(id);
|
||||
if not with_id then
|
||||
return false, "item-not-found";
|
||||
return true, { };
|
||||
end
|
||||
return true, { id, [id] = with_id };
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue