From c619f59b8486a0571ba1cc93f9723886c78037ce Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 12 Aug 2008 06:31:32 +0000 Subject: [PATCH] show status of not in roster contacts in roster. Fixes #4144 --- src/common/helpers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/helpers.py b/src/common/helpers.py index 11d50e4aa..d354ee0e0 100644 --- a/src/common/helpers.py +++ b/src/common/helpers.py @@ -620,6 +620,8 @@ def get_icon_name_to_show(contact, account = None): transport = gajim.get_transport_name_from_jid(contact.jid) if transport: return contact.show + if contact.show in gajim.SHOW_LIST: + return contact.show return 'not in roster' def decode_string(string):