From 8439c9cc1e65e684c8aacb218991515106b300c2 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 15 Jul 2024 12:10:25 +0200 Subject: [PATCH] fix(migration): failed migration typo --- pkg/modules/migration/handler/notifications.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/modules/migration/handler/notifications.go b/pkg/modules/migration/handler/notifications.go index defd2e5c5..327d3774c 100644 --- a/pkg/modules/migration/handler/notifications.go +++ b/pkg/modules/migration/handler/notifications.go @@ -60,7 +60,7 @@ func (n *MigrationFailedReportedNotification) ToMail() *notifications.Mail { kind := cases.Title(language.English).String(n.MigratorName) return notifications.NewMail(). - Subject("The migration from " + kind + " to Vikunja was has failed"). + Subject("The migration from " + kind + " to Vikunja has failed"). Line("Looks like the move from " + kind + " didn't go as planned this time."). Line("No worries, though! Just give it another shot by starting over the same way you did before. Sometimes, these hiccups happen because of glitches on " + kind + "'s end, but trying again often does the trick."). Line("We've got the error message on our radar and are on it to get it sorted out soon.") @@ -87,7 +87,7 @@ func (n *MigrationFailedNotification) ToMail() *notifications.Mail { kind := cases.Title(language.English).String(n.MigratorName) return notifications.NewMail(). - Subject("The migration from " + kind + " to Vikunja was has failed"). + Subject("The migration from " + kind + " to Vikunja has failed"). Line("Looks like the move from " + kind + " didn't go as planned this time."). Line("No worries, though! Just give it another shot by starting over the same way you did before. Sometimes, these hiccups happen because of glitches on " + kind + "'s end, but trying again often does the trick."). Line("We bumped into a little error along the way: `" + n.Error.Error() + "`.").