MUC: Use config passed to rew_roow()
[prosody.git] / plugins / muc / muc.lib.lua
index 2026bc4717c668adc0def9bf16712c6767e8eefd..14cbd63c63e84f593f27fcac8b15c7923f7186c1 100644 (file)
@@ -1223,14 +1223,12 @@ room_mt.set_whois = whois.set;
 
 local _M = {}; -- module "muc"
 
-function _M.new_room(jid, config) -- luacheck: ignore 212
-       -- TODO use config?
+function _M.new_room(jid, config)
        return setmetatable({
                jid = jid;
                _jid_nick = {};
                _occupants = {};
-               _data = {
-               };
+               _data = config or {};
                _affiliations = {};
        }, room_mt);
 end