Caldav: allows mixed case contentType in event MIME message (fix Unable to get event error)

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1088 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-06-10 21:19:23 +00:00
parent 65dfbeae21
commit 9284a924e5
1 changed files with 5 additions and 1 deletions

View File

@ -1867,8 +1867,12 @@ public abstract class ExchangeSession {
return "text/calendar;charset=UTF-8";
}
protected static final String TEXT_CALENDAR = "text/calendar";
protected static final String APPLICATION_ICS = "application/ics";
protected boolean isCalendarContentType(String contentType) {
return contentType.startsWith("text/calendar") || contentType.startsWith("application/ics");
return TEXT_CALENDAR.regionMatches(true, 0, contentType, 0, TEXT_CALENDAR.length()) ||
APPLICATION_ICS.regionMatches(true, 0, contentType, 0, APPLICATION_ICS.length());
}
protected MimePart getCalendarMimePart(MimeMultipart multiPart) throws IOException, MessagingException {