Make quick-match more conservative

This commit is contained in:
mikiher 2023-09-15 09:24:19 +00:00
parent ac746f199b
commit 67bbe21513
2 changed files with 2 additions and 2 deletions

View file

@ -214,7 +214,7 @@ class BookFinder {
var books = []
const maxTitleDistance = !isNaN(options.titleDistance) ? Number(options.titleDistance) : 4
const maxAuthorDistance = !isNaN(options.authorDistance) ? Number(options.authorDistance) : 4
const maxFuzzySearches = 5
const maxFuzzySearches = !isNaN(options.maxFuzzySearches) ? Number(options.maxFuzzySearches) : 5
var numFuzzySearches = 0
if (!title)