mirror of
https://github.com/onionshare/onionshare.git
synced 2024-12-27 16:29:41 -05:00
catch error in start_onion_service in case we somehow failed to parse a service_id in Stem controller response
This commit is contained in:
parent
5c390f1bd9
commit
9b3963799e
@ -413,7 +413,10 @@ class Onion(object):
|
||||
auth_cookie = res.content()[2][2].split('=')[1].split(':')[1]
|
||||
self.auth_string = 'HidServAuth {} {}'.format(onion_host, auth_cookie)
|
||||
|
||||
return onion_host
|
||||
if onion_host is not None:
|
||||
return onion_host
|
||||
else:
|
||||
raise TorErrorProtocolError(strings._('error_tor_protocol_error'))
|
||||
|
||||
def cleanup(self):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user