Correções

This commit is contained in:
2026-06-17 17:27:40 -03:00
parent 887e95c6ca
commit aa74c984d0
4 changed files with 123 additions and 47 deletions
+2 -1
View File
@@ -611,7 +611,8 @@ class ChatController {
if (user.length > 0) {
const nomeUser = (user[0].USU_NOME || '').trim();
if (nomeUser && textoFinal) {
textoFinal = nomeUser + ': ' + textoFinal;
// Padrão WhatsApp: *Nome:* em negrito + quebra de linha + mensagem
textoFinal = '*' + nomeUser + ':*\n' + textoFinal;
}
}
}