mirror of
https://github.com/onionshare/onionshare.git
synced 2025-05-29 03:11:24 -04:00
add missing arg to onion.connect() (config) which broke the Tor Connection progress dialog (regression from b19f8f)
This commit is contained in:
parent
6cd4b4391d
commit
2f4d8610c8
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ class TorConnectionThread(QtCore.QThread):
|
||||||
|
|
||||||
# Connect to the Onion
|
# Connect to the Onion
|
||||||
try:
|
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:
|
if self.onion.connected_to_tor:
|
||||||
self.connected_to_tor.emit()
|
self.connected_to_tor.emit()
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue