mirror of
https://github.com/nikoksr/notify.git
synced 2025-04-02 22:05:35 +02:00
chore(lint): apply changes suggested by golangci-lint
This commit is contained in:
parent
e83d90888b
commit
94e2bf0c5c
@ -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.
|
||||
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user