mirror of https://github.com/adamdruppe/arsd.git
Clean up stupid code
This commit is contained in:
parent
a2bec4b4fa
commit
ca4adf991f
4
email.d
4
email.d
|
@ -1174,9 +1174,7 @@ alias base64decode = Base64.decoder;
|
||||||
immutable(ubyte[]) decodeBase64Mime(string encodedPart) {
|
immutable(ubyte[]) decodeBase64Mime(string encodedPart) {
|
||||||
return cast(immutable(ubyte[])) encodedPart
|
return cast(immutable(ubyte[])) encodedPart
|
||||||
.byChar // prevent Autodecoding, which will break Base64 decoder. Since its base64, it's guarenteed to be 7bit ascii
|
.byChar // prevent Autodecoding, which will break Base64 decoder. Since its base64, it's guarenteed to be 7bit ascii
|
||||||
.filter!((c) => c != '\r')
|
.filter!((c) => (c != '\r') & (c != '\n'))
|
||||||
.splitter!((c) => c == '\n')
|
|
||||||
.joiner
|
|
||||||
.base64decode
|
.base64decode
|
||||||
.array;
|
.array;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue