do not count transport in global online / total users. fixes #2801

This commit is contained in:
Yann Leboulanger 2006-12-26 13:40:01 +00:00
parent e8657b4fdb
commit 7e11bf1172
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ class Contacts:
if jid == our_jid: if jid == our_jid:
continue continue
if common.gajim.jid_is_transport(jid) and not \ if common.gajim.jid_is_transport(jid) and not \
common.gajim.config.get('show_transports_group'): _('Transports') in groups:
# do not count transports # do not count transports
continue continue
contact = self.get_contact_with_highest_priority(account, jid) contact = self.get_contact_with_highest_priority(account, jid)