You've already forked lazarus-ccr
TvPlanIt: Fix ical import (issue #39047)
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8643 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@@ -588,7 +588,7 @@ begin
|
||||
lValue := 'FREQ=' + RecurrenceFrequency;
|
||||
if RecurrenceInterval > 0 then
|
||||
lValue := lValue + ';INTERVAL=' + IntToStr(RecurrenceInterval);
|
||||
if RecurrenceEndDate <> 0 then
|
||||
if (RecurrenceEndDate <> 0) and (RecurrenceEndDate <> FOREVER_DATE) then
|
||||
lValue := lValue + ';UNTIL=' + FormatDateTime(TIME_FORMAT, RecurrenceEndDate);
|
||||
if RecurrenceCount > 0 then
|
||||
lValue := lValue + ';COUNT=' + IntToStr(RecurrenceCount);
|
||||
|
Reference in New Issue
Block a user