diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2018-04-20 15:03:50 +0100 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2018-08-07 23:04:57 +0100 |
commit | 7c087d3b532a041251acc4a6513721de02a0dc1d (patch) | |
tree | 8bf90ba55e897a1e80f9c84b7aa00753c82fb171 | |
parent | 9ce6cdfb6f62130d0e8b3e07019ce031ce584b12 (diff) | |
download | poezio-7c087d3b532a041251acc4a6513721de02a0dc1d.tar.gz poezio-7c087d3b532a041251acc4a6513721de02a0dc1d.tar.bz2 poezio-7c087d3b532a041251acc4a6513721de02a0dc1d.tar.xz poezio-7c087d3b532a041251acc4a6513721de02a0dc1d.zip |
Display MUC status 333 as a leave even if 307 is included
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | poezio/tabs/muctab.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/poezio/tabs/muctab.py b/poezio/tabs/muctab.py index 246606e3..cd8a990f 100644 --- a/poezio/tabs/muctab.py +++ b/poezio/tabs/muctab.py @@ -546,6 +546,7 @@ class MucTab(ChatTab): kick = '307' in status_codes and typ == 'unavailable' ban = '301' in status_codes and typ == 'unavailable' shutdown = '332' in status_codes and typ == 'unavailable' + server_initiated = '333' in status_codes and typ == 'unavailable' non_member = '322' in status_codes and typ == 'unavailable' user = self.get_user_by_name(from_nick) # New user @@ -565,7 +566,7 @@ class MucTab(ChatTab): self.core.on_user_left_private_conversation( from_room, user, status) self.on_user_banned(presence, user, from_nick) - elif kick: + elif kick and not server_initiated: self.core.events.trigger('muc_kick', presence, self) self.core.on_user_left_private_conversation( from_room, user, status) |