@tritard/waterbrother 0.16.61 → 0.16.62

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/gateway.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tritard/waterbrother",
3
- "version": "0.16.61",
3
+ "version": "0.16.62",
4
4
  "description": "Waterbrother: bring-your-own-model coding CLI with local tools, sessions, operator modes, and approval controls",
5
5
  "type": "module",
6
6
  "bin": {
package/src/gateway.js CHANGED
@@ -1813,13 +1813,13 @@ class TelegramGateway {
1813
1813
  if (previewMessage?.message_id) {
1814
1814
  await this.editMessage(chatId, previewMessage.message_id, chunks[0]);
1815
1815
  for (const chunk of chunks.slice(1)) {
1816
- await this.sendMessage(chatId, chunk, null, { parseMode: "HTML" });
1816
+ await this.sendMessage(chatId, chunk, null, { parseMode: "HTML", rawHtml: true });
1817
1817
  }
1818
1818
  return;
1819
1819
  }
1820
1820
 
1821
1821
  for (const [index, chunk] of chunks.entries()) {
1822
- await this.sendMessage(chatId, chunk, index === 0 ? replyToMessageId : null, { parseMode: "HTML" });
1822
+ await this.sendMessage(chatId, chunk, index === 0 ? replyToMessageId : null, { parseMode: "HTML", rawHtml: true });
1823
1823
  }
1824
1824
  }
1825
1825