Reenabled resultType.

Check the instance to see if contain: resultType
This commit is contained in:
Alexandre Beloin 2015-01-19 23:15:54 -05:00
parent 0ae2b03484
commit bb59873536
1 changed files with 12 additions and 4 deletions

View File

@ -200,10 +200,18 @@ def pickBestResult(results, show, quality_list=None):
if show and cur_result.show is not show:
continue
if not cur_result.url.startswith('magnet'):
cur_result.content = cur_result.provider.getURL(cur_result.url)
if not cur_result.content:
continue
# filter out possible bad torrents from providers such as ezrss
if isinstance(cur_result, sickbeard.classes.SearchResult):
if cur_result.resultType == "torrent" and sickbeard.TORRENT_METHOD != "blackhole":
if not cur_result.url.startswith('magnet'):
cur_result.content = cur_result.provider.getURL(cur_result.url)
if not cur_result.content:
continue
else:
if not cur_result.url.startswith('magnet'):
cur_result.content = cur_result.provider.getURL(cur_result.url)
if not cur_result.content:
continue
# build the black And white list
if cur_result.show.is_anime: