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:
Kim Alvefur 2021-05-16 16:02:00 +02:00
parent a95576d485
commit 0e1bf3c061

View file

@ -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";