Changeset

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
parents 670:d5cf10b7fc44
children 672:7db1044d2fab 673:c9bc58e84e96
files plugins/mod_muc.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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