plugins/muc/mod_muc.lua

changeset 2028
4f33100195a0
parent 1781
b3eee6151592
child 2033
38d32c154cec
--- 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;

mercurial