Don't convert MIME content-type headers to lower case as this seems to cause problems.
Thanks to xingwang.xu for the analysis. Fixes issue 1289
This commit is contained in:
parent
d595033fa8
commit
50cd60787f
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ public class MimeBodyPart extends BodyPart
|
|||
}
|
||||
else
|
||||
{
|
||||
return contentType.toLowerCase();
|
||||
return contentType;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue