From 7e12e0a9f99703328c6e6c20d54c72347d2b596b Mon Sep 17 00:00:00 2001 From: ScuroNeko Date: Fri, 6 Mar 2026 14:32:50 +0300 Subject: [PATCH] some fixes and small changes --- drafts.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drafts.go b/drafts.go index 64f5712..2362bdb 100644 --- a/drafts.go +++ b/drafts.go @@ -87,9 +87,9 @@ func (d *DraftProvider) NewDraft() *Draft { } func (d *Draft) push(text string, escapeMd bool) error { if escapeMd { - text += EscapeMarkdownV2(text) + d.Message += EscapeMarkdownV2(text) } else { - text += text + d.Message += text } params := tgapi.SendMessageDraftP{ ChatID: d.chatID,