util.pubsub: Return an empty list if specific item asked for does not exist (thanks jonasw)

This commit is contained in:
Kim Alvefur 2017-10-18 21:21:43 +02:00
parent 48726b9585
commit ec998641fd

View file

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