From 329158349fe643a2987f3cf21b9dd877fa98366b Mon Sep 17 00:00:00 2001 From: Cohee Date: Fri, 16 Jun 2023 00:08:52 +0300 Subject: [PATCH] Remove debug statement --- public/scripts/extensions/tts/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/public/scripts/extensions/tts/index.js b/public/scripts/extensions/tts/index.js index e4423b71e..ff9fc986e 100644 --- a/public/scripts/extensions/tts/index.js +++ b/public/scripts/extensions/tts/index.js @@ -412,7 +412,6 @@ async function processTtsQueue() { // Remove character name from start of the line if power user setting is disabled if (char && !power_user.allow_name2_display) { - debugger; const escapedChar = escapeRegex(char); text = text.replace(new RegExp(`^${escapedChar}:`, 'gm'), ''); }