diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-26 16:54:58 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-26 16:54:58 +0200 |
commit | d99378074dd69903cb3525ea23d2bbbfb6d3b23e (patch) | |
tree | 67414e87a7f1c16981b4c145f01b0fa62eba8698 | |
parent | 3431032994baafdf6345ea3d22a447eee7e9197d (diff) | |
download | prosody-d99378074dd69903cb3525ea23d2bbbfb6d3b23e.tar.gz prosody-d99378074dd69903cb3525ea23d2bbbfb6d3b23e.zip |
mod_component: Use typed config API
-rw-r--r-- | plugins/mod_component.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_component.lua b/plugins/mod_component.lua index 4da1baf7..573b2c8e 100644 --- a/plugins/mod_component.lua +++ b/plugins/mod_component.lua @@ -66,7 +66,7 @@ function module.add_host(module) return true; end - local secret = module:get_option("component_secret"); + local secret = module:get_option_string("component_secret"); if not secret then (session.log or log)("warn", "Component attempted to identify as %s, but component_secret is not set", session.host); session:close("not-authorized"); |