MUC: Fix incorrect nesting of status codes when room config changes (fixes #579)
authorMatthew Wild <mwild1@gmail.com>
Wed, 16 Dec 2015 16:41:48 +0000
changeset 7014 2d5751b2f21c
parent 7013 001b3cff4ed8
child 7015 990b4ddaf582
child 7032 b2d160baa957
MUC: Fix incorrect nesting of status codes when room config changes (fixes #579)
plugins/muc/muc.lib.lua
--- 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