mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-21 05:03:09 +02:00
Fix a regression in 2.3 that broke creation of collections on the device when metadata management was set to manual. Fixes #1371976 [Not writing Collection data to sony prs-350](https://bugs.launchpad.net/calibre/+bug/1371976)
This commit is contained in:
parent
8111b039e9
commit
b127afdaa6
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ def supports_collections(self):
|
|||
return False
|
||||
|
||||
def add_book(self, book, replace_metadata):
|
||||
self.add_book_extended(book, replace_metadata, check_for_duplicates=True)
|
||||
return self.add_book_extended(book, replace_metadata, check_for_duplicates=True)
|
||||
|
||||
def add_book_extended(self, book, replace_metadata, check_for_duplicates):
|
||||
'''
|
||||
|
|
|
|||
Loading…
Reference in a new issue