forked from MirrorHub/mautrix-whatsapp
Log better error when parsing message fails
This commit is contained in:
parent
0f36ee0168
commit
85d57d52bb
1 changed files with 4 additions and 0 deletions
|
@ -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()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue