Diff

plugins/mod_muc.lua @ 671:c7519f0c9a2c

mod_muc: Room subject should be sent only the newly joined occupant
author Waqas Hussain <waqas20@gmail.com>
date Sat, 03 Jan 2009 18:46:52 +0500
parent 668:50072761e02d
child 707:bb9583314ec7
line wrap: on
line diff
--- a/plugins/mod_muc.lua	Sat Jan 03 18:45:51 2009 +0500
+++ b/plugins/mod_muc.lua	Sat Jan 03 18:46:52 2009 +0500
@@ -191,7 +191,7 @@
 					broadcast_presence(nil, to, room);
 					-- TODO send discussion history
 					if rooms_info:get(room, 'subject') then
-						broadcast_message(room, room, rooms_info:get(room, 'subject'), nil);
+						core_route_stanza(component, st.message({type='groupchat', from=room, to=from}):tag("subject"):text(rooms_info:get(room, 'subject')));
 					end
 				end
 			end