1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Switched the following providers to use HTTPS connections instead of standard HTTP, more secure.

This commit is contained in:
echel0n 2014-07-30 22:02:45 -07:00
parent efe115f909
commit dbc30c43cb
6 changed files with 13 additions and 13 deletions

View File

@ -43,7 +43,7 @@ class Animezb(generic.NZBProvider):
self.cache = AnimezbCache(self)
self.url = 'http://animezb.com/'
self.url = 'https://animezb.com/'
def isEnabled(self):
return self.enabled

View File

@ -43,7 +43,7 @@ class Fanzub(generic.NZBProvider):
self.cache = FanzubCache(self)
self.url = 'http://fanzub.com/'
self.url = 'https://fanzub.com/'
def isEnabled(self):
return self.enabled

View File

@ -50,10 +50,10 @@ class HDBitsProvider(generic.TorrentProvider):
self.cache = HDBitsCache(self)
self.url = 'http://hdbits.org'
self.search_url = 'http://hdbits.org/api/torrents'
self.rss_url = 'http://hdbits.org/api/torrents'
self.download_url = 'http://hdbits.org/download.php?'
self.url = 'https://hdbits.org'
self.search_url = 'https://hdbits.org/api/torrents'
self.rss_url = 'https://hdbits.org/api/torrents'
self.download_url = 'https://hdbits.org/download.php?'
def isEnabled(self):
return self.enabled

View File

@ -40,11 +40,11 @@ from sickbeard.helpers import sanitizeSceneName
class TorrentLeechProvider(generic.TorrentProvider):
urls = {'base_url': 'http://torrentleech.org/',
'login': 'http://torrentleech.org/user/account/login/',
'detail': 'http://torrentleech.org/torrent/%s',
'search': 'http://torrentleech.org/torrents/browse/index/query/%s/categories/%s',
'download': 'http://torrentleech.org%s',
urls = {'base_url': 'https://torrentleech.org/',
'login': 'https://torrentleech.org/user/account/login/',
'detail': 'https://torrentleech.org/torrent/%s',
'search': 'https://torrentleech.org/torrents/browse/index/query/%s/categories/%s',
'download': 'https://torrentleech.org%s',
}
def __init__(self):

View File

@ -45,7 +45,7 @@ class TvTorrentsProvider(generic.TorrentProvider):
self.cache = TvTorrentsCache(self)
self.url = 'http://www.tvtorrents.com/'
self.url = 'https://www.tvtorrents.com/'
def isEnabled(self):
return self.enabled

View File

@ -30,7 +30,7 @@ class WombleProvider(generic.NZBProvider):
generic.NZBProvider.__init__(self, "Womble's Index")
self.enabled = False
self.cache = WombleCache(self)
self.url = 'http://newshost.co.za/'
self.url = 'https://newshost.co.za/'
def isEnabled(self):
return self.enabled