Skip empty messages being sent with the webhook (discord). #469

pull/493/head
Wim 6 years ago
parent 618953c865
commit 93307b57aa

@ -137,6 +137,10 @@ func (b *Bdiscord) Send(msg config.Message) (string, error) {
msg.Text += " " + fi.URL
}
}
// skip empty messages
if msg.Text == "" {
return "", nil
}
err := b.c.WebhookExecute(
wID,
wToken,

Loading…
Cancel
Save