plugins/muc/muc.lib.lua
changeset 7014 2d5751b2f21c
parent 6926 f755e0bdc60a
child 7015 990b4ddaf582
child 7386 69827ee1f951
--- 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