From 88d68cfe11e8f5ef80c87a8935121901d4460bc7 Mon Sep 17 00:00:00 2001 From: echel0n Date: Sun, 17 Aug 2014 21:40:18 -0700 Subject: [PATCH] Possible fix for failed to send torrent errors --- sickbeard/search.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sickbeard/search.py b/sickbeard/search.py index ab119f22..942e7f58 100644 --- a/sickbeard/search.py +++ b/sickbeard/search.py @@ -130,6 +130,7 @@ def snatchEpisode(result, endStatus=SNATCHED): dlResult = _downloadResult(result) else: # Snatches torrent with client + result.content = result.provider.getURL(result.url) if not result.url.startswith('magnet') else None client = clients.getClientIstance(sickbeard.TORRENT_METHOD)() dlResult = client.sendTORRENT(result) else: