Skip to content

Commit

Permalink
fix: use tiers for filtering trackers
Browse files Browse the repository at this point in the history
  • Loading branch information
buroa committed Aug 30, 2024
1 parent c15f78f commit dd5755d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qbtools/commands/tagging.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(args, logger):
for t in filtered_torrents:
tags_to_add = []

filtered_trackers = list(filter(lambda s: not s.status == 0, t.trackers))
filtered_trackers = list(filter(lambda s: not s.tier == -1, t.trackers))
if not filtered_trackers:
continue
domain = extractTLD(
Expand Down

0 comments on commit dd5755d

Please sign in to comment.