[#2236] [Core] Fix filter keyerror removing plugin

This commit is contained in:
Calum Lind 2015-09-26 12:58:52 +01:00
parent a26101d6b9
commit e5e4ab4e05
1 changed files with 3 additions and 1 deletions

View File

@ -177,7 +177,9 @@ class FilterManager(component.Component):
for torrent_id in list(torrent_ids):
status = self.core.create_torrent_status(torrent_id, torrent_keys, plugin_keys)
for field, values in filter_dict.iteritems():
if (not status[field] in values) and torrent_id in torrent_ids:
if field in status and status[field] in values:
continue
elif torrent_id in torrent_ids:
torrent_ids.remove(torrent_id)
return torrent_ids