Software /
code /
prosody
Changeset
6213:95bddf0142f4
plugins/muc/muc.lib: Remember to coerce nil role to "none"
author | daurnimator <quae@daurnimator.com> |
---|---|
date | Thu, 03 Apr 2014 14:23:06 -0400 |
parents | 6212:b82523f92b06 |
children | 6214:9813c74ce006 |
files | plugins/muc/muc.lib.lua |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)))};