Fix exception when trackers are disabled from the sidebar

This commit is contained in:
Andrew Resch 2009-05-25 22:55:42 +00:00
parent 9324134d8f
commit b883ffc474
1 changed files with 2 additions and 1 deletions

View File

@ -196,7 +196,8 @@ class FilterManager(component.Component):
value = status[field]
items[field][value] = items[field].get(value, 0) + 1
items["tracker_host"]["Error"] = len(tracker_error_filter(torrent_ids, ("Error",)))
if "tracker_host" in items:
items["tracker_host"]["Error"] = len(tracker_error_filter(torrent_ids, ("Error",)))
if "state" in tree_keys and not show_zero_hits:
self._hide_state_items(items["state"])