mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-03 17:54:54 +02:00
Merge pull request #2784 from rasmuslos/patch-1
Fix custom metadata provider crash
This commit is contained in:
commit
b60f62cebf
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ class BookFinder {
|
|||
* @returns {Promise<Object[]>}
|
||||
*/
|
||||
async getCustomProviderResults(title, author, isbn, providerSlug) {
|
||||
const books = await this.customProviderAdapter.search(title, author, providerSlug, 'book')
|
||||
const books = await this.customProviderAdapter.search(title, author, isbn, providerSlug, 'book')
|
||||
if (this.verbose) Logger.debug(`Custom provider '${providerSlug}' Search Results: ${books.length || 0}`)
|
||||
|
||||
return books
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue