Remove debug statement

This commit is contained in:
Cohee
2023-06-16 00:08:52 +03:00
parent 62d5f20590
commit 329158349f

View File

@ -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'), '');
}