From 4762493e0f590b90229722218430faddad393e70 Mon Sep 17 00:00:00 2001 From: Z Date: Mon, 13 Dec 2021 20:30:33 +0100 Subject: [PATCH] storagenode/reputation: fix missing space in suspension message (#4309) Fix missing space in the suspended message Co-authored-by: Stefan Benten --- storagenode/reputation/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storagenode/reputation/service.go b/storagenode/reputation/service.go index d5b4c2fd4..ac3591c72 100644 --- a/storagenode/reputation/service.go +++ b/storagenode/reputation/service.go @@ -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", } }