Browse Source

Log better error when parsing message fails

Tulir Asokan 5 years ago
parent
commit
85d57d52bb
1 changed files with 4 additions and 0 deletions
  1. 4 0
      portal.go

+ 4 - 0
portal.go

@@ -674,6 +674,10 @@ func (portal *Portal) handleHistory(user *User, messages []interface{}) {
 			continue
 		}
 		data := whatsapp.ParseProtoMessage(message)
+		if data == nil {
+			portal.log.Warnln("Message", message.GetKey().GetId(), "failed to parse during backfilling")
+			continue
+		}
 		if portal.privateChatBackfillInvitePuppet != nil && message.GetKey().GetFromMe() && portal.IsPrivateChat() {
 			portal.privateChatBackfillInvitePuppet()
 		}