diff --git a/src/library.js b/src/library.js index 8901012..66dd07b 100644 --- a/src/library.js +++ b/src/library.js @@ -3341,12 +3341,12 @@ function AutoCards(inHook, inText, inStop) { return 1; } // Normalize both strings for further comparison purposes - const [cleanA, cleanB] = [strA, strB].map(str => (str + const [cleanA, cleanB] = [strA, strB].map(str => limitString((str .replace(/[0-9\s]/g, " ") .trim() .replace(/ +/g, " ") .toLowerCase() - )); + ), 1400)); if (cleanA === cleanB) { return 1; }