util.pubsub: Use service.node_defaults in case config.node_defaults was not provided (thanks jonasw)

This commit is contained in:
Matthew Wild 2018-08-04 21:30:10 +01:00
parent 5a4e252a6c
commit 62fd30552e

View file

@ -114,7 +114,7 @@ end
function service:get_default_affiliation(node, actor, action) -- luacheck: ignore 212
local node_obj = self.nodes[node];
local access_model = node_obj and node_obj.config.access_model
or self.config.node_defaults.access_model;
or self.node_defaults.access_model;
if access_model == "open" then
return "none";