# HG changeset patch # User Goffi # Date 1318094023 -7200 # Node ID b4edea06ae123109ac7f1d73617871b8957b3384 # Parent b03b38b20c1810c9ec9f87247b8076954af19971 plugin XEP-0045: fix method call diff -r b03b38b20c18 -r b4edea06ae12 src/plugins/plugin_xep_0045.py --- a/src/plugins/plugin_xep_0045.py Sat Oct 08 19:04:28 2011 +0200 +++ b/src/plugins/plugin_xep_0045.py Sat Oct 08 19:13:43 2011 +0200 @@ -166,7 +166,7 @@ warning(mess) self.host.bridge.newAlert(mess, _("Group chat error"), "ERROR", profile) return - d = self.join(jid.JID(room_jid), nick, options, profile) + d = self.join(room_jid, nick, options, profile) d.addErrback(lambda x: warning(_('Error while joining room'))) #TODO: error management + signal in bridge def getHandler(self, profile):