mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-10 19:35:08 -05:00
Merge pull request #754 from adam111316/fix_blackhole
Fixes rejection of invalid torrent files
This commit is contained in:
commit
a21e455de7
@ -166,7 +166,11 @@ class GenericProvider:
|
||||
else:
|
||||
logger.log(u"Saved result to " + filename, logger.MESSAGE)
|
||||
|
||||
return self._verify_download(filename)
|
||||
if self._verify_download(filename):
|
||||
return True
|
||||
|
||||
logger.log(u"Failed to download result", logger.ERROR)
|
||||
return False
|
||||
|
||||
def _verify_download(self, file_name=None):
|
||||
"""
|
||||
@ -182,7 +186,9 @@ class GenericProvider:
|
||||
parser.stream._input.close()
|
||||
except:
|
||||
pass
|
||||
if mime_type != 'application/x-bittorrent':
|
||||
if mime_type == 'application/x-bittorrent':
|
||||
return True
|
||||
|
||||
logger.log(u"Result is not a valid torrent file", logger.WARNING)
|
||||
return False
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user