storagenode/reputation: clarify wording on suspension notification (#4921)

Fixes https://github.com/storj/storj/issues/4920
This commit is contained in:
René Smeekes 2022-06-20 22:07:12 +02:00 committed by GitHub
parent b7fd6a70fb
commit fd042a92b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,7 @@ func newSuspensionNotification(satelliteID storj.NodeID, senderID storj.NodeID,
return notifications.NewNotification{ return notifications.NewNotification{
SenderID: senderID, SenderID: senderID,
Type: notifications.TypeSuspension, Type: notifications.TypeSuspension,
Title: "Your Node was suspended " + time.String(), Title: "Your Node is suspended since " + time.String(),
Message: "This is a reminder that your StorageNode on " + satelliteID.String() + " Satellite is suspended", Message: "This is a reminder that your StorageNode is suspended on Satellite " + satelliteID.String(),
} }
} }