diff --git a/app/bot/bot.go b/app/bot/bot.go index 1917df2..5c6075b 100644 --- a/app/bot/bot.go +++ b/app/bot/bot.go @@ -183,7 +183,10 @@ func (bot *Bot) comment(ctx *ext.Context) (string, *gotgbot.SendMessageOpts, err return fmt.Sprintf("Error: %v", err), nil, nil } - return fmt.Sprintf("```\n%s\n```", comment), &gotgbot.SendMessageOpts{ParseMode: "MarkdownV2"}, nil + return fmt.Sprintf("```\n%s\n```", comment), &gotgbot.SendMessageOpts{ + ParseMode: "MarkdownV2", + DisableNotification: true, + }, nil } //go:embed templates/propose_transaction.html @@ -214,7 +217,7 @@ func (bot *Bot) proposeTransaction(ctx *ext.Context) (string, *gotgbot.SendMessa return buf.String(), &gotgbot.SendMessageOpts{ ParseMode: "HTML", - ReplyParameters: &gotgbot.ReplyParameters{MessageId: msg.MessageId}, + // ReplyParameters: &gotgbot.ReplyParameters{MessageId: msg.MessageId}, DisableNotification: true, ReplyMarkup: gotgbot.InlineKeyboardMarkup{ InlineKeyboard: inlineKeyboard, @@ -239,6 +242,7 @@ func (bot *Bot) showAvailableReports(_ *ext.Context) (string, *gotgbot.SendMessa opts := &gotgbot.SendMessageOpts{ ParseMode: "MarkdownV2", + DisableNotification: true, ReplyMarkup: gotgbot.InlineKeyboardMarkup{ InlineKeyboard: inlineKeyboard, },