Skip to content

Commit 8a7ae36

Browse files
committed
No opened services if we are in tor always mode
1 parent 248fc5f commit 8a7ae36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Site/SiteAnnouncer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def getAnnouncingTrackers(self, mode):
5858
def getOpenedServiceTypes(self):
5959
back = []
6060
# Type of addresses they can reach me
61-
if config.trackers_proxy == "disable":
61+
if config.trackers_proxy == "disable" and config.tor != "always":
6262
for ip_type, opened in list(self.site.connection_server.port_opened.items()):
6363
if opened:
6464
back.append(ip_type)

0 commit comments

Comments
 (0)