fix zeroconf
This commit is contained in:
parent
c7d33bb68e
commit
cb0049a1cb
|
@ -1632,7 +1632,8 @@ class RosterWindow:
|
||||||
gajim.contacts.add_account(account)
|
gajim.contacts.add_account(account)
|
||||||
if account not in gajim.groups:
|
if account not in gajim.groups:
|
||||||
gajim.groups[account] = {}
|
gajim.groups[account] = {}
|
||||||
for jid in array:
|
# .keys() is needed
|
||||||
|
for jid in array.keys():
|
||||||
# Remove the contact in roster. It might has changed
|
# Remove the contact in roster. It might has changed
|
||||||
self.remove_contact(jid, account, force = True)
|
self.remove_contact(jid, account, force = True)
|
||||||
# Remove old Contact instances
|
# Remove old Contact instances
|
||||||
|
|
Loading…
Reference in New Issue