summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bridge/telegram/handlers.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bridge/telegram/handlers.go b/bridge/telegram/handlers.go
index 810043b5..8d6c2689 100644
--- a/bridge/telegram/handlers.go
+++ b/bridge/telegram/handlers.go
@@ -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)