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 | e43796839552f4fbc28675a9ef0753ab8bfa4550 (patch) | |
tree | 67414e87a7f1c16981b4c145f01b0fa62eba8698 | |
parent | 4e955bb01926b7fafe8e3d892807833382e50634 (diff) | |
download | prosody-e43796839552f4fbc28675a9ef0753ab8bfa4550.tar.gz prosody-e43796839552f4fbc28675a9ef0753ab8bfa4550.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"); |