From 6e6cec3b6635cc995eb04f3769a0f48077874e4f Mon Sep 17 00:00:00 2001 From: JackDandy Date: Sun, 14 Dec 2014 17:35:12 +0000 Subject: [PATCH] Fix to use new TorrentDay URLs. --- CHANGES.md | 1 + sickbeard/providers/torrentday.py | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index ccb0721d..ff09472e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -36,6 +36,7 @@ * Fix duplicate entries in cache database * Fix network sorting on home page * Fix restart issue +* Fix to use new TorrentDay URLs ### 0.4.0 (2014-12-04 10:50:00 UTC) diff --git a/sickbeard/providers/torrentday.py b/sickbeard/providers/torrentday.py index e119c7c1..29aef590 100644 --- a/sickbeard/providers/torrentday.py +++ b/sickbeard/providers/torrentday.py @@ -35,10 +35,10 @@ from sickbeard.helpers import sanitizeSceneName class TorrentDayProvider(generic.TorrentProvider): - urls = {'base_url': 'http://www.torrentday.com', - 'login': 'http://www.torrentday.com/torrents/', - 'search': 'http://www.torrentday.com/V3/API/API.php', - 'download': 'http://www.torrentday.com/download.php/%s/%s' + urls = {'base_url': 'https://torrentday.eu', + 'login': 'https://torrentday.eu/torrents/', + 'search': 'https://torrentday.eu/V3/API/API.php', + 'download': 'https://torrentday.eu/download.php/%s/%s' } def __init__(self):