Show whether Tor version supports next-gen onion support

This commit is contained in:
Miguel Jacq 2018-09-25 15:26:19 +10:00
parent 83a9ce9f4f
commit 3ed04bf5ec
No known key found for this signature in database
GPG key ID: EEA4341C6D97A0B6
3 changed files with 4 additions and 2 deletions

View file

@ -746,7 +746,7 @@ class SettingsDialog(QtWidgets.QDialog):
onion.connect(custom_settings=settings, config=self.config, tor_status_update_func=tor_status_update_func)
# If an exception hasn't been raised yet, the Tor settings work
Alert(self.common, strings._('settings_test_success', True).format(onion.tor_version, onion.supports_ephemeral, onion.supports_stealth))
Alert(self.common, strings._('settings_test_success', True).format(onion.tor_version, onion.supports_ephemeral, onion.supports_stealth, onion.supports_next_gen_onions))
# Clean up
onion.cleanup()