1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-13 11:12:22 -05:00

Caldav: adjust Lightning bug workaround

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1421 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-09-04 07:36:56 +00:00
parent 4fbd58387a
commit 12b01733e3

View File

@ -685,7 +685,7 @@ public class CaldavConnection extends AbstractConnection {
} catch (HttpNotFoundException e) {
// workaround for Lightning bug
if (request.isBrokenLightning() && eventName.indexOf('%') >= 0) {
item = session.getItem(folderPath, URIUtil.decode(eventName));
item = session.getItem(folderPath, URIUtil.decode(StringUtil.encodePlusSign(eventName)));
} else {
throw e;
}