Browse Source

Merge pull request #2898 from MLWALK3R/patch-3

Changed http to https
pull/2899/head
Ruud Burger 11 years ago
parent
commit
1086b808dc
  1. 10
      couchpotato/core/providers/torrent/iptorrents/main.py

10
couchpotato/core/providers/torrent/iptorrents/main.py

@ -11,11 +11,11 @@ log = CPLog(__name__)
class IPTorrents(TorrentProvider):
urls = {
'test': 'http://www.iptorrents.com/',
'base_url': 'http://www.iptorrents.com',
'login': 'http://www.iptorrents.com/torrents/',
'login_check': 'http://www.iptorrents.com/inbox.php',
'search': 'http://www.iptorrents.com/torrents/?l%d=1%s&q=%s&qf=ti&p=%d',
'test': 'https://www.iptorrents.com/',
'base_url': 'https://www.iptorrents.com',
'login': 'https://www.iptorrents.com/torrents/',
'login_check': 'https://www.iptorrents.com/inbox.php',
'search': 'https://www.iptorrents.com/torrents/?l%d=1%s&q=%s&qf=ti&p=%d',
}
cat_ids = [

Loading…
Cancel
Save