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 a00430d commit c3445eaCopy full SHA for c3445ea
defaulttrackers/core.py
@@ -70,6 +70,8 @@ def update(self):
70
71
def on_torrent_added(self, torrent_id):
72
torrent = component.get("TorrentManager")[torrent_id]
73
+ if torrent.torrent_info.priv() or torrent.get_status(["private"])["private"]:
74
+ return
75
trackers = torrent.get_status(["trackers"])["trackers"]
76
existing_urls = [tracker["url"] for tracker in trackers]
77
got_new_trackers = False
0 commit comments