summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-03-23 00:47:05 +0100
committermathieui <mathieui@mathieui.net>2014-03-23 00:47:05 +0100
commit5c9dd440377ebcd682bc6a2cae1e9466813a476d (patch)
treedb8444d7286a7b504a8a4e1cf5e9ae11aa59d54c /src/core.py
parentfba511e266e5e57d645ed16fb0ebfca946a6f3d4 (diff)
downloadpoezio-5c9dd440377ebcd682bc6a2cae1e9466813a476d.tar.gz
poezio-5c9dd440377ebcd682bc6a2cae1e9466813a476d.tar.bz2
poezio-5c9dd440377ebcd682bc6a2cae1e9466813a476d.tar.xz
poezio-5c9dd440377ebcd682bc6a2cae1e9466813a476d.zip
Add jid info to the unlock messages
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index 3d90513e..b762fe50 100644
--- a/src/core.py
+++ b/src/core.py
@@ -3459,7 +3459,7 @@ class Core(object):
contact = roster[jid.bare]
tab = self.get_conversation_by_jid(jid, create=False)
if isinstance(tab, tabs.DynamicConversationTab) and tab.get_dest_jid() != jid.full:
- tab.unlock()
+ tab.unlock(from_=jid.full)
if contact is None:
return
roster.modified()