diff --git a/server/finders/BookFinder.js b/server/finders/BookFinder.js index 2c6fc9ee44..9aa0a18245 100644 --- a/server/finders/BookFinder.js +++ b/server/finders/BookFinder.js @@ -158,7 +158,7 @@ class BookFinder { * @returns {Promise} */ 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