mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.pubsub: get_last_item(): Return error if node does not exist
This commit is contained in:
parent
716c68f983
commit
6643aeb7e6
1 changed files with 6 additions and 0 deletions
|
@ -597,6 +597,12 @@ function service:get_last_item(node, actor)
|
|||
return false, "forbidden";
|
||||
end
|
||||
--
|
||||
|
||||
-- Check node exists
|
||||
if not self.nodes[node] then
|
||||
return false, "item-not-found";
|
||||
end
|
||||
|
||||
-- Returns success, id, item
|
||||
return true, self.data[node]:tail();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue