Caldav: fix regression in fixVCalendar (missing organizer)

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1343 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-08-16 15:02:33 +00:00
parent ab4dcb74c9
commit 9bb10c251e
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ public class VCalendar extends VObject {
} }
if (fromServer) { if (fromServer) {
// remove organizer line for event without attendees for iPhone // remove organizer line for event without attendees for iPhone
if (getProperty("ATTENDEE") == null) { if (vObject.getProperty("ATTENDEE") == null) {
vObject.setPropertyValue("ORGANIZER", null); vObject.setPropertyValue("ORGANIZER", null);
} }
// detect allday and update date properties // detect allday and update date properties