From 6654f6a2b4f84d910eb5c1cbeb0b9ff3c94c614f Mon Sep 17 00:00:00 2001 From: LewdLeah Date: Mon, 14 Jul 2025 13:47:06 -0400 Subject: [PATCH] Update library.js --- src/library.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }