From 2f4d8610c8120a42da14d9c9c0e1b60683bb62c0 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Sun, 12 Nov 2017 17:53:23 +1100 Subject: [PATCH] add missing arg to onion.connect() (config) which broke the Tor Connection progress dialog (regression from b19f8f) --- onionshare_gui/tor_connection_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionshare_gui/tor_connection_dialog.py b/onionshare_gui/tor_connection_dialog.py index 93c03bef..fa4c7860 100644 --- a/onionshare_gui/tor_connection_dialog.py +++ b/onionshare_gui/tor_connection_dialog.py @@ -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: