plugins/muc/muc.lib.lua
changeset 9242 03e37f7d6c97
parent 9241 0c1a1172d942
child 9266 4285d1efaf03
--- 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