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:
commit
84d259d8b3
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user