The Zeroconf object might already be closed after unregister_service
This commit is contained in:
parent
63ad4bfdce
commit
ddedcd647c
1 changed files with 3 additions and 1 deletions
|
@ -365,7 +365,9 @@ class Backend(Thread, EventGenerator):
|
||||||
"""
|
"""
|
||||||
if self.zeroconf and self.zeroconf_info:
|
if self.zeroconf and self.zeroconf_info:
|
||||||
self.zeroconf.unregister_service(self.zeroconf_info)
|
self.zeroconf.unregister_service(self.zeroconf_info)
|
||||||
|
if self.zeroconf:
|
||||||
self.zeroconf.close()
|
self.zeroconf.close()
|
||||||
|
|
||||||
self.bus.post(ZeroconfServiceRemovedEvent(service_type=self.zeroconf_info.type,
|
self.bus.post(ZeroconfServiceRemovedEvent(service_type=self.zeroconf_info.type,
|
||||||
service_name=self.zeroconf_info.name))
|
service_name=self.zeroconf_info.name))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue