@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.
- package/package.json +1 -1
- package/src/gateway.js +2 -2
package/package.json
CHANGED
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
|
|