From 0ccbf4671d343f561a8850f92ff852c1355dc5dd Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Mon, 27 May 2019 20:00:04 +0000 Subject: fix forbidden api issue git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1860160 13f79535-47bb-0310-9956-ffa450edef68 --- src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java b/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java index ef2771b9fe..15a961ab66 100644 --- a/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java +++ b/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java @@ -450,7 +450,7 @@ public class MAPIMessage extends POIReadOnlyDocument { if (headers != null && headers.length > 0) { Pattern p = Pattern.compile("content-type:.*?charset=[\"']?([^;'\"]+)[\"']?", Pattern.CASE_INSENSITIVE); for (String header : headers) { - if (header.toLowerCase().startsWith("content-type")) { + if (header.toLowerCase(LocaleUtil.getUserLocale()).startsWith("content-type")) { Matcher m = p.matcher(header); if (m.matches()) { String encoding = m.group(1); -- cgit v1.2.3