add missing arg to onion.connect() (config) which broke the Tor Connection progress dialog (regression from b19f8f)

This commit is contained in:
Miguel Jacq 2017-11-12 17:53:23 +11:00
parent 4387589b4f
commit 966beb9406
No known key found for this signature in database
GPG Key ID: EEA4341C6D97A0B6

View File

@ -125,7 +125,7 @@ class TorConnectionThread(QtCore.QThread):
# Connect to the Onion
try:
self.onion.connect(self.settings, self._tor_status_update)
self.onion.connect(self.settings, False, self._tor_status_update)
if self.onion.connected_to_tor:
self.connected_to_tor.emit()
else: