mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Backed out changeset 27d800ddc3b0 (see below)
It's uncertain whether item not existing should be success and nil, or fail with an error. XEP-0060's "fetch most recent item" actually fetches a list of up to N items. N here is a maximum, not a minimum. The feeling is that no items is simply an empty list, not a failure of the operation.
This commit is contained in:
parent
6ff958994e
commit
6e48cd5ece
1 changed files with 2 additions and 2 deletions
|
@ -598,8 +598,8 @@ function service:get_last_item(node, actor)
|
|||
end
|
||||
--
|
||||
|
||||
-- Check node exists and has an item published
|
||||
if not (self.nodes[node] and self.data[node]) then
|
||||
-- Check node exists
|
||||
if not self.nodes[node] then
|
||||
return false, "item-not-found";
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue