Merge branch 'master' into Fuzzy-Matching-Continued

This commit is contained in:
advplyr 2023-10-07 11:52:04 -05:00
commit 786df450e5
34 changed files with 489 additions and 346 deletions

View file

@ -374,7 +374,7 @@ class BookFinder {
if (!books.length && maxFuzzySearches > 0) {
// Normalize title and author
title = title.trim().toLowerCase()
author = author.trim().toLowerCase()
author = author?.trim().toLowerCase() || ''
const cleanAuthor = this.cleanAuthorForCompares(author)