We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a7ae36 commit ab9fe17Copy full SHA for ab9fe17
1 file changed
src/Connection/Connection.py
@@ -125,7 +125,7 @@ def connect(self):
125
self.sock = self.server.tor_manager.createSocket(self.ip, self.port)
126
elif config.tor == "always" and helper.isPrivateIp(self.ip) and self.ip not in config.ip_local:
127
raise Exception("Can't connect to local IPs in Tor: always mode")
128
- elif config.trackers_proxy != "disable" and self.is_tracker_connection:
+ elif config.trackers_proxy != "disable" and config.tor != "always" and self.is_tracker_connection:
129
if config.trackers_proxy == "tor":
130
131
else:
0 commit comments