From f0fb6b834931be93c14414037264c5c3f6710b29 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 19 Apr 2015 14:38:26 +0800 Subject: [PATCH] Fix IPTorrents provider search strings and URL for new site changes --- CHANGES.md | 5 +++++ sickbeard/providers/iptorrents.py | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 6b38f39c..f790ccfb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +### 0.8.2 (2015-04-19 06:45:00 UTC) + +* Fix IPTorrents provider search strings and URL for new site changes + + ### 0.8.1 (2015-04-15 04:16:00 UTC) * Fix season pack search errors diff --git a/sickbeard/providers/iptorrents.py b/sickbeard/providers/iptorrents.py index d5bc7d1f..1297ef2d 100644 --- a/sickbeard/providers/iptorrents.py +++ b/sickbeard/providers/iptorrents.py @@ -40,9 +40,9 @@ from sickbeard.show_name_helpers import allPossibleShowNames class IPTorrentsProvider(generic.TorrentProvider): - urls = {'base_url': 'https://iptorrents.com', - 'login': 'https://iptorrents.com/torrents/', - 'search': 'https://iptorrents.com/torrents/?%s%s&q=%s&qf=ti', + urls = {'base_url': 'https://iptorrents.eu', + 'login': 'https://iptorrents.eu/torrents/', + 'search': 'https://iptorrents.eu/t?%s%s&q=%s&qf=ti#torrents', } def __init__(self):