Change IPT URLs to reduce redirects.

This commit is contained in:
JackDandy 2015-02-13 01:16:22 +00:00
parent cdb3e660ec
commit 74722c3a90
2 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -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):