Really use HTTPS link for isohunt engine

This commit is contained in:
Christophe Dumez 2013-01-08 21:51:51 +02:00
parent b1cf8c16df
commit 6a16ca31a2
2 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
#VERSION: 1.41 #VERSION: 1.42
#AUTHORS: Christophe Dumez (chris@qbittorrent.org) #AUTHORS: Christophe Dumez (chris@qbittorrent.org)
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -60,8 +60,8 @@ class isohunt(object):
torrent_infos['name'] = re.sub('<.*?>', '', torrent_infos['name']) torrent_infos['name'] = re.sub('<.*?>', '', torrent_infos['name'])
torrent_infos['engine_url'] = self.url torrent_infos['engine_url'] = self.url
torrent_code = torrent_infos['link'] torrent_code = torrent_infos['link']
torrent_infos['link'] = 'http://isohunt.com/download/'+torrent_code torrent_infos['link'] = self.url + '/download/' + torrent_code
torrent_infos['desc_link'] = 'http://isohunt.com/torrent_details/'+torrent_code+'/dvdrip?tab=summary' torrent_infos['desc_link'] = self.url + '/torrent_details/' + torrent_code + '/dvdrip?tab=summary'
prettyPrinter(torrent_infos) prettyPrinter(torrent_infos)
res = res + 1 res = res + 1
if res == 0: if res == 0:

View file

@ -1,4 +1,4 @@
#VERSION: 1.41 #VERSION: 1.42
#AUTHORS: Christophe Dumez (chris@qbittorrent.org) #AUTHORS: Christophe Dumez (chris@qbittorrent.org)
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -60,8 +60,8 @@ class isohunt(object):
torrent_infos['name'] = re.sub('<.*?>', '', torrent_infos['name']) torrent_infos['name'] = re.sub('<.*?>', '', torrent_infos['name'])
torrent_infos['engine_url'] = self.url torrent_infos['engine_url'] = self.url
torrent_code = torrent_infos['link'] torrent_code = torrent_infos['link']
torrent_infos['link'] = 'http://isohunt.com/download/'+torrent_code torrent_infos['link'] = self.url + '/download/' + torrent_code
torrent_infos['desc_link'] = 'http://isohunt.com/torrent_details/'+torrent_code+'/dvdrip?tab=summary' torrent_infos['desc_link'] = self.url + '/torrent_details/' + torrent_code + '/dvdrip?tab=summary'
prettyPrinter(torrent_infos) prettyPrinter(torrent_infos)
res = res + 1 res = res + 1
if res == 0: if res == 0: