5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-09 16:50:30 +00:00

Merge pull request #102 from ishitatsuyuki/patch-1

Fix the missing username (telegram). Closes #93
This commit is contained in:
@42wim 2016-12-17 15:44:26 +01:00 committed by GitHub
commit 84d259d8b3

View File

@ -57,7 +57,7 @@ func (b *Btelegram) Send(msg config.Message) error {
if err != nil {
return err
}
m := tgbotapi.NewMessage(chatid, msg.Text)
m := tgbotapi.NewMessage(chatid, msg.Username + msg.Text)
_, err = b.c.Send(m)
return err
}