mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.pubsub: Use service.node_defaults in case config.node_defaults was not provided (thanks jonasw)
This commit is contained in:
parent
5a4e252a6c
commit
62fd30552e
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue