mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
Merge pull request #182 from JackDandy/feature/ChangeIPTUrls
Change IPT URLs to reduce redirects.
This commit is contained in:
commit
3eab0595e7
2 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue