mirror of
https://github.com/moparisthebest/davmail
synced 2024-11-10 11:25:00 -05:00
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:
parent
ab4dcb74c9
commit
9bb10c251e
@ -138,7 +138,7 @@ public class VCalendar extends VObject {
|
||||
}
|
||||
if (fromServer) {
|
||||
// remove organizer line for event without attendees for iPhone
|
||||
if (getProperty("ATTENDEE") == null) {
|
||||
if (vObject.getProperty("ATTENDEE") == null) {
|
||||
vObject.setPropertyValue("ORGANIZER", null);
|
||||
}
|
||||
// detect allday and update date properties
|
||||
|
Loading…
Reference in New Issue
Block a user