# HG changeset patch # User Waqas Hussain # Date 1256073497 -18000 # Node ID 4f33100195a01dcf84dfbcad920c7c95fa83113c # Parent 97b17187b29da6cd4d300bff6cc8571b71162094 MUC: Added 'name' config option, for specifying the component's name in disco responses. diff -r 97b17187b29d -r 4f33100195a0 plugins/muc/mod_muc.lua --- a/plugins/muc/mod_muc.lua Wed Oct 21 01:02:26 2009 +0500 +++ b/plugins/muc/mod_muc.lua Wed Oct 21 02:18:17 2009 +0500 @@ -12,7 +12,8 @@ end local muc_host = module:get_host(); -local muc_name = "Chatrooms"; +local muc_name = module:get_option("name"); +if type(muc_name) ~= "string" then muc_name = "Prosody Chatrooms"; end local history_length = 20; local muc_new_room = module:require "muc".new_room;