From 7c087d3b532a041251acc4a6513721de02a0dc1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Fri, 20 Apr 2018 15:03:50 +0100 Subject: Display MUC status 333 as a leave even if 307 is included MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- poezio/tabs/muctab.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3