forked from MirrorHub/mautrix-whatsapp
Merge pull request #135 from Rafaeltheraven/master
Fix #134, let whatsapp deal with mimetypes
This commit is contained in:
commit
39e46833b4
1 changed files with 0 additions and 5 deletions
|
@ -986,11 +986,6 @@ func (portal *Portal) HandleMediaMessage(source *User, download func() ([]byte,
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// WhatsApp sends incorrect mime types 3:<
|
|
||||||
if detected := http.DetectContentType(data); detected != "application/octet-stream" {
|
|
||||||
mimeType = detected
|
|
||||||
}
|
|
||||||
|
|
||||||
// synapse doesn't handle webp well, so we convert it. This can be dropped once https://github.com/matrix-org/synapse/issues/4382 is fixed
|
// synapse doesn't handle webp well, so we convert it. This can be dropped once https://github.com/matrix-org/synapse/issues/4382 is fixed
|
||||||
if mimeType == "image/webp" {
|
if mimeType == "image/webp" {
|
||||||
img, err := webp.Decode(bytes.NewReader(data))
|
img, err := webp.Decode(bytes.NewReader(data))
|
||||||
|
|
Loading…
Reference in a new issue