diff options
author | mathieui <mathieui@mathieui.net> | 2012-02-23 18:13:41 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-02-23 18:13:41 +0100 |
commit | ae6fa61b843d76a084897e9e55f95736b76b4900 (patch) | |
tree | d96bc00d13394eab297a5d58bdb0134d55efd520 /src/core.py | |
parent | fb9767a80316840f7c5817d1f6432c0d52116525 (diff) | |
download | poezio-ae6fa61b843d76a084897e9e55f95736b76b4900.tar.gz poezio-ae6fa61b843d76a084897e9e55f95736b76b4900.tar.bz2 poezio-ae6fa61b843d76a084897e9e55f95736b76b4900.tar.xz poezio-ae6fa61b843d76a084897e9e55f95736b76b4900.zip |
Fixes #2332
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py index dda9dcd4..5b7bf3af 100644 --- a/src/core.py +++ b/src/core.py @@ -1383,6 +1383,8 @@ class Core(object): jid, type, status = args[0], args[1], args[2] else: return + if jid == '.' and isinstance(self.current_tab(), tabs.ChatTab): + jid = self.current_tab().get_name() if type == 'available': type = None try: |