diff options
author | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-07 03:02:21 -0400 |
---|---|---|
committer | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-07 03:02:21 -0400 |
commit | a3fa964c585f62ccf4c4113da1dc324839122c88 (patch) | |
tree | f189f84015d8327d5d6bc7fb1b97f4362d0be2ec /internal/notifier/telegram | |
parent | 17326a16a018ae84d274be53b52be9273ef69932 (diff) | |
download | donetick-a3fa964c585f62ccf4c4113da1dc324839122c88.tar.gz donetick-a3fa964c585f62ccf4c4113da1dc324839122c88.tar.bz2 donetick-a3fa964c585f62ccf4c4113da1dc324839122c88.zip |
Fix Adaptive Scheduler, Update email handlers, telegram notifications
Diffstat (limited to 'internal/notifier/telegram')
-rw-r--r-- | internal/notifier/telegram/telegram.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/notifier/telegram/telegram.go b/internal/notifier/telegram/telegram.go index e35f0c8..54c0905 100644 --- a/internal/notifier/telegram/telegram.go +++ b/internal/notifier/telegram/telegram.go @@ -55,7 +55,7 @@ func (tn *TelegramNotifier) SendChoreCompletion(c context.Context, chore *chMode if user.ChatID == 0 { continue } - text := fmt.Sprintf("🎉 '%s' is completed! is off the list, %s! 🌟 ", chore.Name, user.DisplayName) + text := fmt.Sprintf("🎉 *%s* is completed! is off the list, %s! 🌟 ", chore.Name, user.DisplayName) msg := tgbotapi.NewMessage(user.ChatID, text) msg.ParseMode = "Markdown" _, err := tn.bot.Send(msg) |