Skip to content

Commit

Permalink
Stats week
Browse files Browse the repository at this point in the history
  • Loading branch information
grulex committed Nov 6, 2024
1 parent bf7959f commit 74f0def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/bot.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func (s TelegramBot) Start() error {
for _, stat := range stats {
msgStr += stat.String() + "\n"
}
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "``` "+msgStr+"```")
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "```\n"+msgStr+"\n```")
msg.ParseMode = tgbotapi.ModeMarkdown
_, err = s.telegramBot.Send(msg)
if err != nil {
Expand Down

0 comments on commit 74f0def

Please sign in to comment.