Add space between filename and URL (mattermost). Fixes #1820

pull/1822/head
Wim 2 years ago
parent e775a8a22e
commit 888c8b9a84
No known key found for this signature in database
GPG Key ID: 5E423DA5C9AA63D4

@ -206,7 +206,7 @@ func (b *Bmattermost) sendWebhook(msg config.Message) (string, error) {
for _, f := range msg.Extra["file"] {
fi := f.(config.FileInfo)
if fi.URL != "" {
msg.Text += fi.URL
msg.Text += " " + fi.URL
}
}
}

Loading…
Cancel
Save