Software /
code /
prosody
Changeset
7011:2d5751b2f21c
MUC: Fix incorrect nesting of status codes when room config changes (fixes #579)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 16 Dec 2015 16:41:48 +0000 |
parents | 7010:001b3cff4ed8 |
children | 7012:990b4ddaf582 7029:b2d160baa957 |
files | plugins/muc/muc.lib.lua |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/muc/muc.lib.lua Tue Dec 08 23:20:37 2015 +0100 +++ b/plugins/muc/muc.lib.lua Wed Dec 16 16:41:48 2015 +0000 @@ -736,7 +736,7 @@ if dirty or whois_changed then local msg = st.message({type='groupchat', from=self.jid}) - :tag('x', {xmlns='http://jabber.org/protocol/muc#user'}):up() + :tag('x', {xmlns='http://jabber.org/protocol/muc#user'}); if dirty then msg.tags[1]:tag('status', {code = '104'}):up(); @@ -745,6 +745,7 @@ local code = (whois == 'moderators') and "173" or "172"; msg.tags[1]:tag('status', {code = code}):up(); end + msg:up(); self:broadcast_message(msg, false) end