From 9fe382d26e5d8cbe707468bb9a019067fec7d291 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Sun, 7 Jul 2024 02:52:52 -0400 Subject: Update chore notification messages to use markdown formatting --- internal/notifier/service/planner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/notifier/service/planner.go') diff --git a/internal/notifier/service/planner.go b/internal/notifier/service/planner.go index 615fa0d..05d600d 100644 --- a/internal/notifier/service/planner.go +++ b/internal/notifier/service/planner.go @@ -112,7 +112,7 @@ func generatePreDueNotifications(chore *chModel.Chore, users []*cModel.UserCircl TypeID: 3, UserID: user.ID, TargetID: fmt.Sprint(user.ChatID), - Text: fmt.Sprintf("📢 Heads up! Chore '%s' is due soon (on %s) and assigned to %s.", chore.Name, chore.NextDueDate.Format("January 2nd"), assignee.DisplayName), + Text: fmt.Sprintf("📢 Heads up! *%s* is due soon (on %s) and assigned to %s.", chore.Name, chore.NextDueDate.Format("January 2nd"), assignee.DisplayName), } notifications = append(notifications, notification) -- cgit