From fd042a92b9d3219969d1a5b89ea5c765fb7567cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Smeekes?= Date: Mon, 20 Jun 2022 22:07:12 +0200 Subject: [PATCH] storagenode/reputation: clarify wording on suspension notification (#4921) Fixes https://github.com/storj/storj/issues/4920 --- storagenode/reputation/service.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storagenode/reputation/service.go b/storagenode/reputation/service.go index ac3591c72..42aa48055 100644 --- a/storagenode/reputation/service.go +++ b/storagenode/reputation/service.go @@ -80,7 +80,7 @@ func newSuspensionNotification(satelliteID storj.NodeID, senderID storj.NodeID, return notifications.NewNotification{ SenderID: senderID, Type: notifications.TypeSuspension, - Title: "Your Node was suspended " + time.String(), - Message: "This is a reminder that your StorageNode on " + satelliteID.String() + " Satellite is suspended", + Title: "Your Node is suspended since " + time.String(), + Message: "This is a reminder that your StorageNode is suspended on Satellite " + satelliteID.String(), } }