mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
Fix panic on nil messages (telegram). Closes #366
This commit is contained in:
parent
2b15739b48
commit
df5bce27b0
@ -134,6 +134,10 @@ func (b *Btelegram) Send(msg config.Message) (string, error) {
|
||||
func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
|
||||
for update := range updates {
|
||||
flog.Debugf("Receiving from telegram: %#v", update.Message)
|
||||
if update.Message == nil {
|
||||
flog.Error("Getting nil messages, this shouldn't happen.")
|
||||
continue
|
||||
}
|
||||
var message *tgbotapi.Message
|
||||
username := ""
|
||||
channel := ""
|
||||
|
Loading…
Reference in New Issue
Block a user