aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/pubsub.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/pubsub.lua b/util/pubsub.lua
index 9397484a..575153b8 100644
--- a/util/pubsub.lua
+++ b/util/pubsub.lua
@@ -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