diff options
-rw-r--r-- | poezio/tabs/muctab.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/poezio/tabs/muctab.py b/poezio/tabs/muctab.py index 328c65ee..6d788b38 100644 --- a/poezio/tabs/muctab.py +++ b/poezio/tabs/muctab.py @@ -465,6 +465,8 @@ class MucTab(ChatTab): """ from_nick, _, affiliation, show, status, role, jid, typ = dissect_presence( presence) + if typ == 'unavailable': + return user_color = self.search_for_color(from_nick) new_user = User(from_nick, affiliation, show, status, role, jid, deterministic, user_color) |