5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00

Limit discord username via webhook to 32 chars

This commit is contained in:
Wim 2018-11-23 20:52:31 +01:00
parent 0795906533
commit c6fd65d1d7

View File

@ -164,6 +164,10 @@ func (b *Bdiscord) Send(msg config.Message) (string, error) {
msg.Text = helper.ClipMessage(msg.Text, MessageLength)
msg.Text = b.replaceUserMentions(msg.Text)
// discord username must be [0..32] max
if len(msg.Username) > 32 {
msg.Username = msg.Username[0:32]
}
err := b.c.WebhookExecute(
wID,
wToken,