From 06e947d1a30abb9578ae820780471a3e9d7affac Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Mon, 3 May 2010 03:37:21 +0200 Subject: Added credits --- connection/xmpp.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'connection') diff --git a/connection/xmpp.py b/connection/xmpp.py index 4facfe8..dfdeb28 100644 --- a/connection/xmpp.py +++ b/connection/xmpp.py @@ -45,15 +45,23 @@ class MucHandler(MucRoomHandler): if(not self.room_state.joined or user.same_as(self.room_state.me)): return + status = '' + if stanza.get_status() != None: + status = stanza.get_status() + for mod in self.client.module_manager.modules.itervalues(): - mod.join(stanza.get_from().bare().as_unicode(), stanza.get_from().resource, stanza.get_show(), stanza.get_status(), self) + mod.join(stanza.get_from().bare().as_unicode(), stanza.get_from().resource, stanza.get_show(), status, self) def user_left(self, user, stanza): if(not self.room_state.joined or user.same_as(self.room_state.me)): return + status = '' + if stanza.get_status() != None: + status = stanza.get_status() + for mod in self.client.module_manager.modules.itervalues(): - mod.leave(stanza.get_from().bare().as_unicode(), stanza.get_from().resource, stanza.get_show(), stanza.get_status(), self) + mod.leave(stanza.get_from().bare().as_unicode(), stanza.get_from().resource, stanza.get_show(), status, self) def subject_changed(self, user, stanza): topic = '' -- cgit v1.2.3