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 {
|
for update := range updates {
|
||||||
b.Log.Debugf("== Receiving event: %#v", update.Message)
|
b.Log.Debugf("== Receiving event: %#v", update.Message)
|
||||||
|
|
||||||
if update.Message == nil && update.ChannelPost == nil &&
|
if update.Message == nil || update.ChannelPost == nil ||
|
||||||
update.EditedMessage == nil && update.EditedChannelPost == nil {
|
update.EditedMessage == nil || update.EditedChannelPost == nil {
|
||||||
b.Log.Error("Getting nil messages, this shouldn't happen.")
|
b.Log.Error("Getting nil messages, this shouldn't happen.")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue