Fix crash when tor is closed first and then onionshare is closed and a stem.SocketClosed exception is raised.

This commit is contained in:
Sigma 2016-12-20 01:44:20 -08:00
parent 2794d41919
commit d3b22e34d9

View File

@ -179,7 +179,10 @@ class Onion(object):
if self.supports_ephemeral:
# cleanup the ephemeral onion service
if self.service_id:
self.c.remove_ephemeral_hidden_service(self.service_id)
try:
self.c.remove_ephemeral_hidden_service(self.service_id)
except:
pass
self.service_id = None
else: