REPOSITORY / ScuroNeko/Laniakea

Pull Requests

PULL REQUESTS REPOSITORY

v1.0.0 #9

Merged
ScuroNeko merged 101 commits from dev into main 2026-05-20 13:43:34 +03:00
Showing only changes of commit 7e12e0a9f9 - Show all commits
+2 -2
View File
@@ -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,