5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-22 19:40:25 +00:00

Use bot username if specified (slack). Closes #273

This commit is contained in:
Wim 2017-10-12 20:33:37 +02:00 committed by GitHub
parent 155ae80d22
commit 4e1dc9f885

View File

@ -345,6 +345,9 @@ func (b *Bslack) handleSlackClient(mchan chan *MMMessage) {
} }
if bot.Name != "" { if bot.Name != "" {
m.Username = bot.Name m.Username = bot.Name
if ev.Username != "" {
m.Username = ev.Username
}
m.UserID = bot.ID m.UserID = bot.ID
} }
} }