From 6c15943363fc6eec5593166af4550bbdd04e5ebf Mon Sep 17 00:00:00 2001 From: echel0n Date: Sun, 17 Aug 2014 22:52:19 -0700 Subject: [PATCH] Possible fix for failed to send torrent errors --- sickbeard/tvcache.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/sickbeard/tvcache.py b/sickbeard/tvcache.py index 10874a92..96b79499 100644 --- a/sickbeard/tvcache.py +++ b/sickbeard/tvcache.py @@ -361,15 +361,6 @@ class TVCache(): result.version = curVersion result.content = None - # validate torrent file if not magnet link to avoid invalid torrent links - if self.provider.providerType == sickbeard.providers.generic.GenericProvider.TORRENT: - if sickbeard.TORRENT_METHOD != "blackhole": - client = clients.getClientIstance(sickbeard.TORRENT_METHOD)() - result = client._get_torrent_hash(result) - if not result.hash: - logger.log(u'Unable to get torrent hash for ' + title + ', skipping it', logger.DEBUG) - continue - # add it to the list if epObj not in neededEps: neededEps[epObj] = [result]