Skip to content

Commit fca828a

Browse files
authored
Merge pull request blind-oracle#11 from ahm-forks/private-torrents
Skip private torrents
2 parents 313b66d + 0a9d0ec commit fca828a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

transmission-trackers.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,9 @@ def readLocalLists():
235235
if config['status_filter'] and not t.status in config['status_filter']:
236236
dbg('{}: skipping due to status filter'.format(t.name))
237237
continue
238+
if t.isPrivate:
239+
dbg('{}: skipping private torrent'.format(t.name))
240+
continue
238241

239242
ttrk = set(())
240243
for trk in t.trackers:

0 commit comments

Comments
 (0)