1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-08-13 16:53:51 -04:00

Caldav: workaround for Lightning 1.0b2 bug

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1345 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-08-16 15:57:25 +00:00
parent 2ceb323ab8
commit c3c08afbfd

View File

@ -681,7 +681,17 @@ public class CaldavConnection extends AbstractConnection {
if (eventName != null && eventName.length() > 0
&& !"inbox".equals(eventName) && !"calendar".equals(eventName)) {
ExchangeSession.Item item;
item = session.getItem(folderPath, eventName);
try {
item = session.getItem(folderPath, eventName);
} catch (HttpNotFoundException e) {
// workaround for Lightning bug
if (request.isBrokenLightning() && eventName.indexOf('%') >= 0) {
item = session.getItem(folderPath, URIUtil.decode(eventName));
} else {
throw e;
}
}
appendItemResponse(response, request, item);
}
} catch (Exception e) {