# HG changeset patch # User Goffi # Date 1327274017 -3600 # Node ID 60a9086b35c51eed73b6a5f9bb4226d45b32dd21 # Parent 5731b038fc7fe9d5b974120426424c0c59b8a920 plugin XEP-0249: fixed join (signature changed after wokkel update) diff -r 5731b038fc7f -r 60a9086b35c5 src/plugins/plugin_xep_0249.py --- a/src/plugins/plugin_xep_0249.py Sun Jan 22 19:41:02 2012 +0100 +++ b/src/plugins/plugin_xep_0249.py Mon Jan 23 00:13:37 2012 +0100 @@ -105,7 +105,7 @@ return _jid, xmlstream = self.host.getJidNStream(profile) #TODO: we always autojoin so far, we need to add a parameter to autojoin/ignore invitations or let user choose to follow it - d = self.host.plugins["XEP-0045"].join(room.host, room.user, _jid.user, profile) + d = self.host.plugins["XEP-0045"].join(room, _jid.user, {}, profile) class XEP_0249_handler(XMPPHandler):