mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix regression that caused calibre to not use OPF files when adding books recursively from directories with multiple books per directory
This commit is contained in:
parent
6926dcbdb8
commit
1447f12575
@ -3664,7 +3664,7 @@ books_series_link feeds
|
||||
if not ext:
|
||||
continue
|
||||
ext = ext[1:].lower()
|
||||
if ext not in BOOK_EXTENSIONS:
|
||||
if ext not in BOOK_EXTENSIONS and ext != 'opf':
|
||||
continue
|
||||
|
||||
key = os.path.splitext(path)[0]
|
||||
|
Loading…
x
Reference in New Issue
Block a user