storagenode/reputation: fix missing space in suspension message (#4309)

Fix missing space in the suspended message

Co-authored-by: Stefan Benten <mail@stefan-benten.de>
This commit is contained in:
Z 2021-12-13 20:30:33 +01:00 committed by GitHub
parent 9a37399346
commit 4762493e0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,6 +81,6 @@ func newSuspensionNotification(satelliteID storj.NodeID, senderID storj.NodeID,
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",
Message: "This is a reminder that your StorageNode on " + satelliteID.String() + " Satellite is suspended",
}
}