mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #298 from emil-perhinschi/master
fix for attachment filename when content-type is application/octet-stream
This commit is contained in:
commit
b19472fdec
6
email.d
6
email.d
|
@ -351,12 +351,18 @@ class MimePart {
|
|||
string gpgproto;
|
||||
|
||||
MimeAttachment toMimeAttachment() {
|
||||
import std.array: empty;
|
||||
|
||||
if(type == "multipart/mixed" && stuff.length == 1)
|
||||
return stuff[0].toMimeAttachment;
|
||||
|
||||
MimeAttachment att;
|
||||
att.type = type;
|
||||
if ( att.type == "application/octet-stream" && filename.empty && !name.empty ) {
|
||||
att.filename = name;
|
||||
} else {
|
||||
att.filename = filename;
|
||||
}
|
||||
att.id = id;
|
||||
att.content = content;
|
||||
return att;
|
||||
|
|
Loading…
Reference in New Issue