Update group formatting

This commit is contained in:
elishadavidi 2026-05-28 18:14:44 +03:00
parent 8bdc05a13d
commit 4173163963

View File

@ -44,7 +44,7 @@ function formatBatch(queue) {
const parts = [];
for (const [group, msgs] of Object.entries(groups)) {
parts.push(`[${group}]`);
parts.push(`[👥 ${group} 👥]`);
for (const m of msgs) {
parts.push(`${m.sender}: ${m.text}`);
}