do not count transport in global online / total users. fixes #2801
This commit is contained in:
parent
e8657b4fdb
commit
7e11bf1172
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue