From 94e2bf0c5cd0f8081d5a35a2f720cf9288f282c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niko=20K=C3=B6ser?= Date: Fri, 29 Jan 2021 19:53:31 +0100 Subject: [PATCH] chore(lint): apply changes suggested by golangci-lint --- notify.go | 2 +- service/slack/slack.go | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/notify.go b/notify.go index fc50186..0967a53 100644 --- a/notify.go +++ b/notify.go @@ -13,7 +13,7 @@ type Notify struct { } // ErrSendNotification signals that the notifier failed to send a notification. -var ErrSendNotification = errors.New("Send notification") +var ErrSendNotification = errors.New("send notification") // Notifier defines the behavior for notification services. The Send command simply sends a message string to the // internal destination Notifier. E.g for telegram it sends the message to the specified group chat. diff --git a/service/slack/slack.go b/service/slack/slack.go index aedd4ab..67c6c7d 100644 --- a/service/slack/slack.go +++ b/service/slack/slack.go @@ -38,13 +38,12 @@ func (s Slack) Send(subject, message string) error { fullMessage := subject + "\n" + message // Treating subject as message title for _, channelID := range s.channelIDs { - id, timestamp, err := s.client.PostMessage( channelID, slack.MsgOptionText(fullMessage, false), ) if err != nil { - return errors.Wrapf(err, "failed to send message to Slack channel '%d' at time '%s'", id, timestamp) + return errors.Wrapf(err, "failed to send message to Slack channel '%s' at time '%s'", id, timestamp) } }