1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

Merge pull request #2508 from ngosang/mininova_search

Fix: error in mininova search engine
This commit is contained in:
sledgehammer999 2015-02-09 19:09:54 +02:00
commit b7898cccd0
4 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,6 @@
#VERSION: 1.50
#VERSION: 1.51
#AUTHORS: Christophe Dumez (chris@qbittorrent.org)
#CONTRIBUTORS: Diego de las Heras (diegodelasheras@gmail.com)
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
@ -59,7 +60,7 @@ class mininova(object):
self.current_item = {}
self.td_counter = 0
self.current_item['link']=self.url+params['href'].strip()
elif params['href'].startswith("/tor/"):
elif params['href'].startswith("/tor/") and self.current_item is not None:
self.current_item['desc_link']=self.url+params['href'].strip()
def handle_data(self, data):

View File

@ -1,5 +1,5 @@
torrentreactor: 1.33
mininova: 1.50
mininova: 1.51
piratebay: 2.01
extratorrent: 1.2
kickasstorrents: 1.25

View File

@ -1,5 +1,6 @@
#VERSION: 1.50
#VERSION: 1.51
#AUTHORS: Christophe Dumez (chris@qbittorrent.org)
#CONTRIBUTORS: Diego de las Heras (diegodelasheras@gmail.com)
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
@ -59,7 +60,7 @@ class mininova(object):
self.current_item = {}
self.td_counter = 0
self.current_item['link']=self.url+params['href'].strip()
elif params['href'].startswith("/tor/"):
elif params['href'].startswith("/tor/") and self.current_item is not None:
self.current_item['desc_link']=self.url+params['href'].strip()
def handle_data(self, data):

View File

@ -1,5 +1,5 @@
torrentreactor: 1.33
mininova: 1.50
mininova: 1.51
piratebay: 2.01
extratorrent: 1.2
kickasstorrents: 1.25