From 9213d264a0cc07d835b2c600b4b7febb555b87bf Mon Sep 17 00:00:00 2001 From: Spicy Marinara Date: Thu, 26 Feb 2026 00:40:22 +0100 Subject: [PATCH] Update src/systems/integration/sillytavern.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/systems/integration/sillytavern.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systems/integration/sillytavern.js b/src/systems/integration/sillytavern.js index 2cf96a1..505c1d9 100644 --- a/src/systems/integration/sillytavern.js +++ b/src/systems/integration/sillytavern.js @@ -74,7 +74,7 @@ function syncLastGeneratedDataFromSwipeStore(currentChat) { if (swipeData) { lastGeneratedData.userStats = swipeData.userStats || null; lastGeneratedData.infoBox = swipeData.infoBox || null; - // Normalise characterThoughts to string (backward compat with old object format). + // Normalize characterThoughts to string (backward compat with old object format). if (swipeData.characterThoughts && typeof swipeData.characterThoughts === 'object') { lastGeneratedData.characterThoughts = JSON.stringify(swipeData.characterThoughts, null, 2); } else {