Set ogg as default audiomessage when none found (whatsapp). Fixes #1427 (#1431)

pull/1444/head
Wim 3 years ago committed by GitHub
parent 2a7f28606c
commit 7466e1d014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -289,6 +289,10 @@ func (b *Bwhatsapp) HandleAudioMessage(message whatsapp.AudioMessage) {
return
}
if len(fileExt) == 0 {
fileExt = append(fileExt, ".ogg")
}
filename := fmt.Sprintf("%v%v", message.Info.Id, fileExt[0])
b.Log.Debugf("Trying to download %s with size %#v and type %s", filename, message.Length, message.Type)

Loading…
Cancel
Save