diff options
author | Kim Alvefur <zash@zash.se> | 2017-10-10 01:41:47 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-10-10 01:41:47 +0200 |
commit | 14a3b7858b5c4985407776a1364720e19e333145 (patch) | |
tree | 16bebf3d854ef9ac034eef32e6da8c7595df665f /util | |
parent | de4181c741bccf4830a9842a78edc191b6387009 (diff) | |
download | prosody-14a3b7858b5c4985407776a1364720e19e333145.tar.gz prosody-14a3b7858b5c4985407776a1364720e19e333145.zip |
util.pubsub: Return item-not-found if a single item is requested, and not there
Diffstat (limited to 'util')
-rw-r--r-- | util/pubsub.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/pubsub.lua b/util/pubsub.lua index cae13521..9b38bf59 100644 --- a/util/pubsub.lua +++ b/util/pubsub.lua @@ -338,7 +338,11 @@ function service:get_items(node, actor, id) return false, "item-not-found"; end if id then -- Restrict results to a single specific item - return true, { id, [id] = self.data[node]:get(id) }; + local with_id = self.data[node]:get(id); + if not with_id then + return false, "item-not-found"; + end + return true, { id, [id] = with_id }; else local data = {} for key, value in self.data[node]:items() do |