mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 10:33:38 +00:00
Merge branch 'hotfix/0.8.2'
This commit is contained in:
commit
862c0c2eca
2 changed files with 8 additions and 3 deletions
|
@ -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)
|
### 0.8.1 (2015-04-15 04:16:00 UTC)
|
||||||
|
|
||||||
* Fix season pack search errors
|
* Fix season pack search errors
|
||||||
|
|
|
@ -40,9 +40,9 @@ from sickbeard.show_name_helpers import allPossibleShowNames
|
||||||
|
|
||||||
|
|
||||||
class IPTorrentsProvider(generic.TorrentProvider):
|
class IPTorrentsProvider(generic.TorrentProvider):
|
||||||
urls = {'base_url': 'https://iptorrents.com',
|
urls = {'base_url': 'https://iptorrents.eu',
|
||||||
'login': 'https://iptorrents.com/torrents/',
|
'login': 'https://iptorrents.eu/torrents/',
|
||||||
'search': 'https://iptorrents.com/torrents/?%s%s&q=%s&qf=ti',
|
'search': 'https://iptorrents.eu/t?%s%s&q=%s&qf=ti#torrents',
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
Loading…
Reference in a new issue