mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-03 17:54:54 +02:00
Fix:Match all books only matching first 100 #2096
This commit is contained in:
parent
c4fd4ff9de
commit
60c65008dc
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ class Scanner {
|
|||
}
|
||||
|
||||
offset += limit
|
||||
hasMoreChunks = libraryItems.length < limit
|
||||
hasMoreChunks = libraryItems.length === limit
|
||||
let oldLibraryItems = libraryItems.map(li => Database.libraryItemModel.getOldLibraryItem(li))
|
||||
|
||||
const shouldContinue = await this.matchLibraryItemsChunk(library, oldLibraryItems, libraryScan)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue