diff options
Diffstat (limited to 'sleekxmpp/plugins')
-rw-r--r-- | sleekxmpp/plugins/xep_0045.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0045.py b/sleekxmpp/plugins/xep_0045.py index 82737421..d530a0ab 100644 --- a/sleekxmpp/plugins/xep_0045.py +++ b/sleekxmpp/plugins/xep_0045.py @@ -146,7 +146,14 @@ class xep_0045(base.base_plugin): """ Handle a message event in a muc. """ self.xmpp.event('groupchat_message', msg) - + + def jidInRoom(self, room, jid): + for nick in self.rooms[room]: + entry = self.rooms[room][nick] + if entry is not None and entry['jid'].full == jid: + return True + return False + def getRoomForm(self, room, ifrom=None): iq = self.xmpp.makeIqGet() iq['to'] = room |