From e90e0b9be956cc6417143e6a64b98cc0f8f9cc2f Mon Sep 17 00:00:00 2001 From: Allan Carr Date: Tue, 24 Feb 2026 16:32:40 -0800 Subject: [PATCH] IO-3578 Fortellis Regex Fix Signed-off-by: Allan Carr --- server/fortellis/fortellis.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/fortellis/fortellis.js b/server/fortellis/fortellis.js index 21db8c9c6..968dac09d 100644 --- a/server/fortellis/fortellis.js +++ b/server/fortellis/fortellis.js @@ -14,7 +14,7 @@ const { const _ = require("lodash"); const moment = require("moment-timezone"); -const replaceSpecialRegex = /[^a-zA-Z0-9 .,\n #]+/g; +const replaceSpecialRegex = /[^a-zA-Z0-9 ]+/g; // Helper function to handle FortellisApiError logging function handleFortellisApiError(socket, error, functionName, additionalDetails = {}) {