Explorar el Código

Ignore file length mismatches again

Tulir Asokan hace 3 años
padre
commit
a6adf61417
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      portal.go

+ 2 - 0
portal.go

@@ -1692,6 +1692,8 @@ func (portal *Portal) convertMediaMessage(intent *appservice.IntentAPI, source *
 	if errors.Is(err, whatsmeow.ErrNoURLPresent) {
 	if errors.Is(err, whatsmeow.ErrNoURLPresent) {
 		portal.log.Debugfln("No URL present error for media message %s, ignoring...", info.ID)
 		portal.log.Debugfln("No URL present error for media message %s, ignoring...", info.ID)
 		return nil
 		return nil
+	} else if errors.Is(err, whatsmeow.ErrFileLengthMismatch) || errors.Is(err, whatsmeow.ErrInvalidMediaSHA256) {
+		portal.log.Warnfln("Mismatching media checksums in %s: %v. Ignoring because WhatsApp seems to ignore them too", info.ID, err)
 	} else if err != nil {
 	} else if err != nil {
 		return portal.makeMediaBridgeFailureMessage(intent, info, err, captionContent)
 		return portal.makeMediaBridgeFailureMessage(intent, info, err, captionContent)
 	}
 	}