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) {
|
||||
return cast(immutable(ubyte[])) encodedPart
|
||||
.byChar // prevent Autodecoding, which will break Base64 decoder. Since its base64, it's guarenteed to be 7bit ascii
|
||||
.filter!((c) => c != '\r')
|
||||
.splitter!((c) => c == '\n')
|
||||
.joiner
|
||||
.filter!((c) => (c != '\r') & (c != '\n'))
|
||||
.base64decode
|
||||
.array;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue