Skip to content

Commit

Permalink
Fix custom metadata provider crash
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmuslos authored Mar 23, 2024
1 parent c1bbec2 commit 9615337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/finders/BookFinder.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9615337

Please sign in to comment.