mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.pubsub: Fix traceback if node data not initialized
This should not be possible, but a traceback indicating node_data being nil here was reported by Ron in the chat.
This commit is contained in:
parent
a95576d485
commit
0e1bf3c061
1 changed files with 4 additions and 0 deletions
|
@ -555,6 +555,10 @@ function service:publish(node, actor, id, item, requested_config) --> ok, err
|
|||
return nil, "invalid-item";
|
||||
end
|
||||
local node_data = self.data[node];
|
||||
if not node_data then
|
||||
-- FIXME how is this possible? #1657
|
||||
return nil, "internal-server-error";
|
||||
end
|
||||
local ok = node_data:set(id, item);
|
||||
if not ok then
|
||||
return nil, "internal-server-error";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue