@gonzih/cc-tg 0.9.46 → 0.9.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/notifier.js +1 -1
- package/package.json +1 -1
package/dist/notifier.js
CHANGED
|
@@ -156,7 +156,7 @@ export function startNotifier(bot, chatId, namespace, redis, handleUserMessage,
|
|
|
156
156
|
const buf = metaAgentBuffers.get(ns);
|
|
157
157
|
if (!buf || !buf.text.trim())
|
|
158
158
|
return;
|
|
159
|
-
const text =
|
|
159
|
+
const text = `← [${ns}] ` + stripAnsi(buf.text.trim());
|
|
160
160
|
buf.text = "";
|
|
161
161
|
buf.timer = null;
|
|
162
162
|
const chunks = splitLongMessage(text);
|