ignore presences when nothing changed (status, status message, prio). Fixes #7210

This commit is contained in:
Yann Leboulanger 2012-09-26 16:03:18 +02:00
parent 498bcb6ccd
commit 3d39c36c18
1 changed files with 1 additions and 1 deletions

View File

@ -851,7 +851,7 @@ class ConnectionHandlersBase:
if obj.old_show == obj.new_show and obj.contact.status == \
obj.status and obj.contact.priority == obj.prio: # no change
return
return True
else:
obj.contact = gajim.contacts.get_first_contact_from_jid(account,
jid)