Browse Source

Fix to kickasstorrents search plugin

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
fad028cfa2
  1. 8
      src/searchengine/nova/engines/kickasstorrents.py
  2. 2
      src/searchengine/nova/engines/versions.txt

8
src/searchengine/nova/engines/kickasstorrents.py

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
#VERSION: 1.1
#VERSION: 1.2
#AUTHORS: Christophe Dumez (chris@qbittorrent.org)
# Redistribution and use in source and binary forms, with or without
@ -47,7 +47,11 @@ class kickasstorrents(object): @@ -47,7 +47,11 @@ class kickasstorrents(object):
while True and i<11:
results = []
json_data = retrieve_url(self.url+'/search/%s/%d/?categories[]=%s&field=seeders&sorder=desc&json=1'%(what, i, self.supported_categories[cat]))
json_dict = json.loads(json_data)
try:
json_dict = json.loads(json_data)
except:
i += 1
continue
if json_dict['total_results'] <= 0: return
results = json_dict['list']
for r in results:

2
src/searchengine/nova/engines/versions.txt

@ -6,4 +6,4 @@ piratebay: 1.40 @@ -6,4 +6,4 @@ piratebay: 1.40
vertor: 1.3
torrentdownloads: 1.1
extratorrent: 1.1
kickasstorrents: 1.1
kickasstorrents: 1.2

Loading…
Cancel
Save