mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-17 13:56:47 +00:00
keyword search includes trcker status
This commit is contained in:
parent
03d1177085
commit
352427ca20
@ -43,8 +43,13 @@ def filter_keyword(torrent_ids, values):
|
||||
#filter:
|
||||
for keyword in keywords:
|
||||
for torrent_id in torrent_ids:
|
||||
if keyword in all_torrents[torrent_id].filename.lower():
|
||||
torrent = all_torrents[torrent_id]
|
||||
if keyword in torrent.filename.lower():
|
||||
yield torrent_id
|
||||
#i want to find broken torrents.
|
||||
elif keyword in torrent.tracker_status.lower():
|
||||
yield torrent_id
|
||||
|
||||
|
||||
class FilterManager(component.Component):
|
||||
"""FilterManager
|
||||
|
Loading…
x
Reference in New Issue
Block a user