# HG changeset patch # User Matthew Wild # Date 1536923147 -3600 # Node ID 6cab073232742244b7329b8808bc19f4d08c170f # Parent 9b0604fe01f13679752389c45935ef9c9e676278 MUC: Include 'nick' attribute in affiliation lists (thanks jc) diff -r 9b0604fe01f1 -r 6cab07323274 plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Thu Sep 13 21:09:55 2018 +0200 +++ b/plugins/muc/muc.lib.lua Fri Sep 14 12:05:47 2018 +0100 @@ -965,7 +965,8 @@ or self:get_members_only() and self:get_whois() == "anyone" and affiliation_rank >= valid_affiliations.member then local reply = st.reply(stanza):query("http://jabber.org/protocol/muc#admin"); for jid in self:each_affiliation(_aff or "none") do - reply:tag("item", {affiliation = _aff, jid = jid}):up(); + local nick = self:get_registered_nick(jid); + reply:tag("item", {affiliation = _aff, jid = jid, nick = nick }):up(); end origin.send(reply:up()); return true; diff -r 9b0604fe01f1 -r 6cab07323274 spec/scansion/muc_register.scs --- a/spec/scansion/muc_register.scs Thu Sep 13 21:09:55 2018 +0200 +++ b/spec/scansion/muc_register.scs Fri Sep 14 12:05:47 2018 +0100 @@ -365,3 +365,19 @@ +# To check the status of the room is as expected, Romeo requests the member list + +Romeo sends: + + + + + + +Romeo receives: + + + + + +