diff --git a/CHANGES.md b/CHANGES.md index cc9d5676..c7e77065 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -49,6 +49,7 @@ * Add ability to test Plex Server(s) on config/notifications page * Add percentage of episodes downloaded to footer and remove double spaces in text * Fix SSL authentication on Synology stations +* Change IPT urls to reduce 301 redirection [develop changelog] * Change uT params from unicode to str.format as magnet URLs worked but sending files in POST bodies failed diff --git a/sickbeard/providers/iptorrents.py b/sickbeard/providers/iptorrents.py index 62028695..d5bc7d1f 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://www.iptorrents.com', - 'login': 'https://www.iptorrents.com/torrents/', - 'search': 'https://www.iptorrents.com/torrents/?%s%s&q=%s&qf=ti', + urls = {'base_url': 'https://iptorrents.com', + 'login': 'https://iptorrents.com/torrents/', + 'search': 'https://iptorrents.com/torrents/?%s%s&q=%s&qf=ti', } def __init__(self):