2
0
mirror of https://github.com/42wim/matterbridge synced 2024-11-03 15:40:24 +00:00

Fix telegram crash #620

This commit is contained in:
Wim 2018-11-29 23:03:50 +01:00
parent b51d0a9b05
commit 7923cfe8f8

View File

@ -119,10 +119,10 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
rmsg := config.Message{Account: b.Account, Extra: make(map[string][]interface{})}
// handle channels
b.handleChannels(&rmsg, message, update)
message = b.handleChannels(&rmsg, message, update)
// handle groups
b.handleGroups(&rmsg, message, update)
message = b.handleGroups(&rmsg, message, update)
// set the ID's from the channel or group message
rmsg.ID = strconv.Itoa(message.MessageID)