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:
cketti 2010-03-25 14:39:07 +00:00
parent d595033fa8
commit 50cd60787f

View file

@ -100,7 +100,7 @@ public class MimeBodyPart extends BodyPart
}
else
{
return contentType.toLowerCase();
return contentType;
}
}