mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.pubsub: Apply defaults metatable before config check (thanks pep.)
Makes it so that the callback sees the default if it’s not in the form, which makes it easier to validate.
This commit is contained in:
parent
9c75dbe8a8
commit
2b8327099a
1 changed files with 3 additions and 1 deletions
|
@ -565,6 +565,8 @@ function service:set_node_config(node, actor, new_config)
|
|||
return false, "item-not-found";
|
||||
end
|
||||
|
||||
setmetatable(new_config, {__index=self.node_defaults})
|
||||
|
||||
if self.config.check_node_config then
|
||||
local ok = self.config.check_node_config(node, actor, new_config);
|
||||
if not ok then
|
||||
|
@ -573,7 +575,7 @@ function service:set_node_config(node, actor, new_config)
|
|||
end
|
||||
|
||||
local old_config = node_obj.config;
|
||||
node_obj.config = setmetatable(new_config, {__index=self.node_defaults});
|
||||
node_obj.config = new_config;
|
||||
|
||||
if self.config.nodestore then
|
||||
local ok, err = save_node_to_store(self, node_obj);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue