summaryrefslogtreecommitdiff
path: root/slixmpp/plugins
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2015-06-22 23:56:05 +0200
committermathieui <mathieui@mathieui.net>2015-06-22 23:56:05 +0200
commitd0ad25745a81df3f49a96bee376f9d60f490bd0f (patch)
tree95e6dc733f0732708e5c33cf0e36280e463b25b9 /slixmpp/plugins
parentf7164d35d29041790be8b9fcd77dd89f75aee789 (diff)
parent55be23a6da0800bc7a360b2d4488ebb75bae8f89 (diff)
downloadslixmpp-d0ad25745a81df3f49a96bee376f9d60f490bd0f.tar.gz
slixmpp-d0ad25745a81df3f49a96bee376f9d60f490bd0f.tar.bz2
slixmpp-d0ad25745a81df3f49a96bee376f9d60f490bd0f.tar.xz
slixmpp-d0ad25745a81df3f49a96bee376f9d60f490bd0f.zip
Merge branch 'jid' of http://git.linkmauve.fr/slixmpp
Diffstat (limited to 'slixmpp/plugins')
-rw-r--r--slixmpp/plugins/xep_0078/legacyauth.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/slixmpp/plugins/xep_0078/legacyauth.py b/slixmpp/plugins/xep_0078/legacyauth.py
index 0bcfb3d0..d949a913 100644
--- a/slixmpp/plugins/xep_0078/legacyauth.py
+++ b/slixmpp/plugins/xep_0078/legacyauth.py
@@ -128,9 +128,8 @@ class XEP_0078(BasePlugin):
self.xmpp.authenticated = True
- self.xmpp.boundjid = JID(self.xmpp.requested_jid,
- resource=resource,
- cache_lock=True)
+ self.xmpp.boundjid = JID(self.xmpp.requested_jid)
+ self.xmpp.boundjid.resource = resource
self.xmpp.event('session_bind', self.xmpp.boundjid)
log.debug("Established Session")