Add support for attachment file names
Send, receive, and save attachment filenames. Use them as suggested names when saving files. // FREEBIE
This commit is contained in:
parent
a256f17e19
commit
fc514aa96f
5 changed files with 18 additions and 2 deletions
|
@ -39049,6 +39049,9 @@ MessageSender.prototype = {
|
|||
proto.id = id;
|
||||
proto.contentType = attachment.contentType;
|
||||
proto.digest = result.digest;
|
||||
if (attachment.fileName) {
|
||||
proto.fileName = attachment.fileName;
|
||||
}
|
||||
return proto;
|
||||
});
|
||||
}.bind(this));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue