# HG changeset patch # User Matthew Wild # Date 1535973582 -3600 # Node ID 03e37f7d6c97f3193686e8fbc93bf12cbfc7b62d # Parent 0c1a1172d942dff29df58d1bdff511b235be4c33 MUC: Add some comments for clarity diff -r 0c1a1172d942 -r 03e37f7d6c97 plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Mon Sep 03 12:19:20 2018 +0100 +++ b/plugins/muc/muc.lib.lua Mon Sep 03 12:19:42 2018 +0100 @@ -70,6 +70,7 @@ 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 @@ 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