plugins/muc/muc.lib: Remember to coerce nil role to "none"
authordaurnimator <quae@daurnimator.com>
Thu, 03 Apr 2014 14:23:06 -0400
changeset 6213 95bddf0142f4
parent 6212 b82523f92b06
child 6214 9813c74ce006
plugins/muc/muc.lib: Remember to coerce nil role to "none"
plugins/muc/muc.lib.lua
--- a/plugins/muc/muc.lib.lua	Thu Apr 03 12:44:27 2014 -0400
+++ b/plugins/muc/muc.lib.lua	Thu Apr 03 14:23:06 2014 -0400
@@ -163,10 +163,11 @@
 	x:up();
 	return x
 end
+
 -- actor is (real) jid
 function room_mt:build_item_list(occupant, x, is_anonymous, nick, actor, reason)
-	local affiliation = self:get_affiliation(occupant.bare_jid);
-	local role = occupant.role;
+	local affiliation = self:get_affiliation(occupant.bare_jid) or "none";
+	local role = occupant.role or "none";
 	local actor_attr;
 	if actor then
 		actor_attr = {nick = select(3,jid_split(self:get_occupant_jid(actor)))};