Log better error when parsing message fails

This commit is contained in:
Tulir Asokan 2019-08-25 19:41:46 +03:00
parent 0f36ee0168
commit 85d57d52bb

View file

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