diff --git a/sickbeard/providers/freshontv.py b/sickbeard/providers/freshontv.py index a60b7989..e06e9bad 100755 --- a/sickbeard/providers/freshontv.py +++ b/sickbeard/providers/freshontv.py @@ -58,11 +58,11 @@ class FreshOnTVProvider(generic.TorrentProvider): self.cache = FreshOnTVCache(self) - self.urls = {'base_url': 'http://freshon.tv/', - 'login': 'http://freshon.tv/login.php?action=makelogin', - 'detail': 'http://freshon.tv/details.php?id=%s', - 'search': 'http://freshon.tv/browse.php?incldead=%s&words=0&cat=0&search=%s', - 'download': 'http://freshon.tv/download.php?id=%s&type=torrent', + self.urls = {'base_url': 'https://freshon.tv/', + 'login': 'https://freshon.tv/login.php?action=makelogin', + 'detail': 'https://freshon.tv/details.php?id=%s', + 'search': 'https://freshon.tv/browse.php?incldead=%s&words=0&cat=0&search=%s', + 'download': 'https://freshon.tv/download.php?id=%s&type=torrent', } self.url = self.urls['base_url'] @@ -317,4 +317,4 @@ class FreshOnTVCache(tvcache.TVCache): search_params = {'RSS': ['']} return {'entries': self.provider._doSearch(search_params)} -provider = FreshOnTVProvider() \ No newline at end of file +provider = FreshOnTVProvider()