From 9fa7329762bbd9d7f7492b995390caa1c5b8cf06 Mon Sep 17 00:00:00 2001 From: ouoertheo Date: Fri, 5 May 2023 23:50:13 -0500 Subject: [PATCH] Don't replace * with ... for tts messages --- public/scripts/extensions/tts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/extensions/tts/index.js b/public/scripts/extensions/tts/index.js index 2180159e2..10f62b52a 100644 --- a/public/scripts/extensions/tts/index.js +++ b/public/scripts/extensions/tts/index.js @@ -241,7 +241,7 @@ async function processTtsQueue() { console.debug('New message found, running TTS') currentTtsJob = ttsJobQueue.shift() - const text = currentTtsJob.mes.replaceAll('*', '...') + const text = currentTtsJob.mes.replaceAll('*', '') const char = currentTtsJob.name try {