Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit cce7ce110130cec052a81352ec09261b1a010c27 Author: Wim <wim@42.be> Date: Sat Jan 20 18:19:17 2018 +0000 Add an extension to images without one (matrix). #331 diff --git a/bridge/matrix/matrix.go b/bridge/matrix/matrix.go index 4cc524e..d659aaa 100644 --- a/bridge/matrix/matrix.go +++ b/bridge/matrix/matrix.go @@ -2056 +20520 @@ func (b *Bmatrix) handleEvent(ev *matrix.Event) {   info := ev.Content["info"].(map[string]interface{})   size := info["size"].(float64)   name := ev.Content["body"].(string) + // check if we have an image uploaded without extension + if !strings.Contains(name, ".") { + if ev.Content["msgtype"].(string) == "m.image" { + if mtype, ok := ev.Content["mimetype"].(string); ok { + mext, _ := mime.ExtensionsByType(mtype) + if len(mext) > 0 { + name = name + mext[0] + } + } else { + // just a default .png extension if we don't have mime info + name = name + ".png" + } + } + }   flog.Debugf("trying to download %#v with size %#v", name, size)   if size <= float64(b.General.MediaDownloadSize) {   data, err := helper.DownloadFile(url)