mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
Make the Settings dialog's 'Test Tor Settings' button work again, with changes to the Onion object
This commit is contained in:
parent
80af01e82d
commit
d112b35414
@ -347,11 +347,14 @@ class SettingsDialog(QtWidgets.QDialog):
|
||||
if settings.get('connection_type') == 'bundled':
|
||||
self.tor_status.show()
|
||||
self._disable_buttons()
|
||||
bundled_tor_func = self._tor_status_update
|
||||
else:
|
||||
bundled_tor_func = None
|
||||
|
||||
onion = Onion(settings=settings, bundled_tor_func=bundled_tor_func)
|
||||
def tor_status_update_func(progress, summary):
|
||||
self._tor_status_update(progress, summary)
|
||||
else:
|
||||
tor_status_update_func = None
|
||||
|
||||
onion = Onion()
|
||||
onion.connect(settings=settings, tor_status_update_func=tor_status_update_func)
|
||||
|
||||
# If an exception hasn't been raised yet, the Tor settings work
|
||||
Alert(strings._('settings_test_success', True).format(onion.tor_version, onion.supports_ephemeral, onion.supports_stealth))
|
||||
|
Loading…
Reference in New Issue
Block a user