Skip to content
Snippets Groups Projects
Commit d4663922 authored by dkirov's avatar dkirov
Browse files

fix reconnect after name collision

parent 56d29dbf
No related branches found
No related tags found
No related merge requests found
......@@ -224,11 +224,11 @@ class ConnectionZeroconf(ConnectionHandlersZeroconf):
self.zeroconf.host = self.host
self.zeroconf.port = self.port
if self.connection:
return self.connection, ''
if self.zeroconf.connect():
self.connection = client_zeroconf.ClientZeroconf(self.zeroconf, self)
if not self.connection:
self.connection = client_zeroconf.ClientZeroconf(self.zeroconf, self)
else:
self.zeroconf.announce()
self.roster = self.connection.getRoster()
self.dispatch('ROSTER', self.roster)
......@@ -278,6 +278,7 @@ class ConnectionZeroconf(ConnectionHandlersZeroconf):
self.zeroconf.remove_announce()
self.zeroconf.txt = txt2
self.zeroconf.port = port
self.zeroconf.username = self.username
self.zeroconf.announce()
def change_status(self, show, msg, sync = False, auto = False):
......
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