mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-22 10:42:02 -08:00
Fix channel and group messages (telegram)
This commit is contained in:
parent
077d494c7b
commit
678a7ceb4e
@ -124,11 +124,33 @@ func (b *Btelegram) Send(msg config.Message) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
|
func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
|
||||||
|
username := ""
|
||||||
|
text := ""
|
||||||
|
channel := ""
|
||||||
for update := range updates {
|
for update := range updates {
|
||||||
if update.Message == nil {
|
// handle channels
|
||||||
continue
|
if update.ChannelPost != nil {
|
||||||
|
if update.ChannelPost.From != nil {
|
||||||
|
username = update.ChannelPost.From.FirstName
|
||||||
|
if username == "" {
|
||||||
|
username = update.ChannelPost.From.UserName
|
||||||
}
|
}
|
||||||
flog.Debugf("Sending message from %s on %s to gateway", update.Message.From.UserName, b.Account)
|
text = update.ChannelPost.Text
|
||||||
b.Remote <- config.Message{Username: update.Message.From.UserName, Text: update.Message.Text, Channel: strconv.FormatInt(update.Message.Chat.ID, 10), Account: b.Account}
|
channel = strconv.FormatInt(update.ChannelPost.Chat.ID, 10)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// handle groups
|
||||||
|
if update.Message != nil {
|
||||||
|
if update.Message.From != nil {
|
||||||
|
username = update.Message.From.FirstName
|
||||||
|
if username == "" {
|
||||||
|
username = update.Message.From.UserName
|
||||||
|
}
|
||||||
|
text = update.Message.Text
|
||||||
|
channel = strconv.FormatInt(update.Message.Chat.ID, 10)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
flog.Debugf("Sending message from %s on %s to gateway", username, b.Account)
|
||||||
|
b.Remote <- config.Message{Username: username, Text: text, Channel: channel, Account: b.Account}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user