Caldav: Rename TZID also in RECURRENCE-ID

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@2030 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2012-09-20 21:19:41 +00:00
parent 6b3b27c818
commit dbcc088525
1 changed files with 4 additions and 0 deletions

View File

@ -246,6 +246,10 @@ public class VCalendar extends VObject {
if (dtEnd != null && dtStart.getParam("TZID") != null) {
dtEnd.setParam("TZID", tzid);
}
VProperty reccurrenceId = vObject.getProperty("RECURRENCE-ID");
if (reccurrenceId != null && reccurrenceId.getParam("TZID") != null) {
reccurrenceId.setParam("TZID", tzid);
}
}
// remove unsupported attachment reference
if (vObject.getProperty("ATTACH") != null) {