diff options
author | Kim Alvefur <zash@zash.se> | 2016-03-11 13:34:32 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-03-11 13:34:32 +0100 |
commit | 9f635f76b83e88fa85f8c5eb44df8bf0b6a1eb51 (patch) | |
tree | 4277bb8a3c4287d75aa7acc8648086363714a935 | |
parent | 421cbe1c1a9ba71530200678915a95e25f7c3a3b (diff) | |
download | prosody-9f635f76b83e88fa85f8c5eb44df8bf0b6a1eb51.tar.gz prosody-9f635f76b83e88fa85f8c5eb44df8bf0b6a1eb51.zip |
MUC: Use type-specific config API for the 'name' option
-rw-r--r-- | plugins/muc/mod_muc.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index 69351504..ee90d552 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -13,8 +13,7 @@ if module:get_host_type() ~= "component" then end local muc_host = module:get_host(); -local muc_name = module:get_option("name"); -if type(muc_name) ~= "string" then muc_name = "Prosody Chatrooms"; end +local muc_name = module:get_option_string("name", "Prosody Chatrooms"); local restrict_room_creation = module:get_option("restrict_room_creation"); if restrict_room_creation then if restrict_room_creation == true then |