mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-07 17:03:42 +02:00
Disable Edelweiss searches as they return garbage results
This commit is contained in:
parent
19ca524e47
commit
a4eba954e8
1 changed files with 3 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ def get_basic_data(browser, log, *skus):
|
|||
class Edelweiss(Source):
|
||||
|
||||
name = 'Edelweiss'
|
||||
version = (2, 0, 0)
|
||||
version = (2, 0, 1)
|
||||
minimum_calibre_version = (3, 6, 0)
|
||||
description = _('Downloads metadata and covers from Edelweiss - A catalog updated by book publishers')
|
||||
|
||||
|
|
@ -270,6 +270,8 @@ def identify(self, log, result_queue, abort, title=None, authors=None, # {{{
|
|||
if 'edelweiss' in identifiers:
|
||||
items = [identifiers['edelweiss']]
|
||||
else:
|
||||
log.error('Currently Edelweiss returns random books for search queries')
|
||||
return
|
||||
query = self.create_query(log, title=title, authors=authors,
|
||||
identifiers=identifiers)
|
||||
if not query:
|
||||
|
|
|
|||
Loading…
Reference in a new issue