From 5e1226c7f98cb306d6624dc8c29dbce6cf7795ed Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Mon, 3 Sep 2018 12:19:42 +0100 Subject: MUC: Add some comments for clarity --- plugins/muc/muc.lib.lua | 3 +++ 1 file changed, 3 insertions(+) (limited to 'plugins') diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index 435ca805..122536ec 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -70,6 +70,7 @@ function room_mt:new_occupant(bare_real_jid, nick) return occupant; end +-- nick is in the form of an in-room JID function room_mt:get_occupant_by_nick(nick) local occupant = self._occupants[nick]; if occupant == nil then return nil end @@ -1450,8 +1451,10 @@ function _M.restore_room(frozen, state) room._affiliation_data = frozen._affiliation_data; if frozen.jid and frozen._affiliations then + -- Old storage format room._affiliations = frozen._affiliations; else + -- New storage format for jid, data in pairs(frozen) do local node, host, resource = jid_split(jid); if host:sub(1,1) ~= "_" and not resource and type(data) == "string" then -- cgit v1.2.3