Don't replace * with ... for tts messages

This commit is contained in:
ouoertheo
2023-05-05 23:50:13 -05:00
parent c1b41a561a
commit 9fa7329762

View File

@@ -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 {