From 7e11bf117298e2795695441626254fe4ebf3bbc3 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 26 Dec 2006 13:40:01 +0000 Subject: [PATCH] do not count transport in global online / total users. fixes #2801 --- src/common/contacts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/contacts.py b/src/common/contacts.py index 7cc89b0a8..e16e647d3 100644 --- a/src/common/contacts.py +++ b/src/common/contacts.py @@ -264,7 +264,7 @@ class Contacts: if jid == our_jid: continue if common.gajim.jid_is_transport(jid) and not \ - common.gajim.config.get('show_transports_group'): + _('Transports') in groups: # do not count transports continue contact = self.get_contact_with_highest_priority(account, jid)