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 { if err != nil {
return err return err
} }
m := tgbotapi.NewMessage(chatid, msg.Text) m := tgbotapi.NewMessage(chatid, msg.Username + msg.Text)
_, err = b.c.Send(m) _, err = b.c.Send(m)
return err return err
} }