5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-09 15:40:27 +00:00

Revert "Bail if any vars are nil, not if all (telegram) (#778)"

This reverts commit efd2c99862.
This commit is contained in:
Wim 2019-04-05 00:02:26 +02:00
parent aba9e4f3be
commit 8cc2d3b4fe

View File

@ -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
}