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:
Matthew Wild 2018-08-18 14:30:14 +01:00
parent 6ff958994e
commit 6e48cd5ece

View file

@ -598,8 +598,8 @@ function service:get_last_item(node, actor)
end end
-- --
-- Check node exists and has an item published -- Check node exists
if not (self.nodes[node] and self.data[node]) then if not self.nodes[node] then
return false, "item-not-found"; return false, "item-not-found";
end end