mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-07 16:42:51 +01:00
Fix for identifiers search, sid=56 vs sid=561.
This commit is contained in:
parent
60cb243975
commit
f2dd34c64e
2 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ class FanFictionDownLoaderBase(InterfaceActionBase):
|
|||
description = 'UI plugin to download FanFiction stories from various sites.'
|
||||
supported_platforms = ['windows', 'osx', 'linux']
|
||||
author = 'Jim Miller'
|
||||
version = (1, 6, 12)
|
||||
version = (1, 6, 13)
|
||||
minimum_calibre_version = (0, 8, 57)
|
||||
|
||||
#: This field defines the GUI plugin class that contains all the code
|
||||
|
|
|
|||
|
|
@ -541,7 +541,7 @@ make_firstimage_cover:true
|
|||
print("from URL(%s)"%url)
|
||||
|
||||
# try to find by identifier url first.
|
||||
searchstr = 'identifiers:"=url:%s"'%url.replace(":","|")
|
||||
searchstr = 'identifiers:"=url:=%s"'%url.replace(":","|")
|
||||
identicalbooks = db.search_getting_ids(searchstr, None)
|
||||
if len(identicalbooks) < 1:
|
||||
# find dups
|
||||
|
|
|
|||
Loading…
Reference in a new issue