5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-22 16:20:26 +00:00

Telegram: Fix the missing username

This commit is contained in:
Tatsuyuki Ishi 2016-12-17 18:43:54 +09:00 committed by GitHub
parent 7f5dc1d461
commit 8b47670a74

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
}