diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-09-03 12:19:42 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-09-03 12:19:42 +0100 |
commit | 5e1226c7f98cb306d6624dc8c29dbce6cf7795ed (patch) | |
tree | ef6f7f5228755b00d98666176bc870c4fd054eff /plugins/muc | |
parent | cbddf7e40e01e60af674f51fa8a55647fea5c1b7 (diff) | |
download | prosody-5e1226c7f98cb306d6624dc8c29dbce6cf7795ed.tar.gz prosody-5e1226c7f98cb306d6624dc8c29dbce6cf7795ed.zip |
MUC: Add some comments for clarity
Diffstat (limited to 'plugins/muc')
-rw-r--r-- | plugins/muc/muc.lib.lua | 3 |
1 files changed, 3 insertions, 0 deletions
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 |