mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.pubsub: Signal that 'persistent-items' is unsupported when disabled
XEP-0060 says that this the way to indicate that 'persistent-items' is unsupported, but doesn't explicitly say if it being disabled in the node configuration also counts as unsupported.
This commit is contained in:
parent
1603e003b1
commit
dfed446a5a
3 changed files with 7 additions and 5 deletions
|
@ -652,13 +652,14 @@ function service:get_items(node, actor, ids) --> (true, { id, [id] = node }) or
|
|||
if not node_obj then
|
||||
return false, "item-not-found";
|
||||
end
|
||||
if not self.data[node] then
|
||||
-- Disabled rather than unsupported, but close enough.
|
||||
return false, "persistent-items-unsupported";
|
||||
end
|
||||
if type(ids) == "string" then -- COMPAT see #1305
|
||||
ids = { ids };
|
||||
end
|
||||
local data = {};
|
||||
if not self.data[node] then
|
||||
return true, data;
|
||||
end
|
||||
if ids then
|
||||
for _, key in ipairs(ids) do
|
||||
local value = self.data[node]:get(key);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue