Skip to content
Snippets Groups Projects
Commit 2265a80e authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

correctly handle roster puches with subscription=remove. Fixes #6829

parent 41815f99
No related branches found
No related tags found
No related merge requests found
......@@ -739,6 +739,10 @@ class Interface:
# According to xep 0162, a contact is not an observer anymore when
# we asked for auth, so also remove him if ask changed
old_groups = contacts[0].groups
if obj.sub == 'remove':
# another of our instance removed a contact. Remove it here too
self.roster.remove_contact(obj.jid, account, backend=True)
return
if contacts[0].sub != obj.sub or contacts[0].ask != obj.ask\
or old_groups != obj.groups:
# c.get_shown_groups() has changed. Reflect that in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment