mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
Bail if any vars are nil, not if all (telegram) (#778)
This commit is contained in:
parent
cc05ba8907
commit
efd2c99862
@ -109,8 +109,8 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
|
||||
for update := range updates {
|
||||
b.Log.Debugf("== Receiving event: %#v", update.Message)
|
||||
|
||||
if update.Message == nil && update.ChannelPost == nil &&
|
||||
update.EditedMessage == nil && update.EditedChannelPost == nil {
|
||||
if update.Message == nil || update.ChannelPost == nil ||
|
||||
update.EditedMessage == nil || update.EditedChannelPost == nil {
|
||||
b.Log.Error("Getting nil messages, this shouldn't happen.")
|
||||
continue
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user