Merge pull request #1940 from cryptpad/fix-recurrence-export-calendar

Fix export bug on calendars with recurring event with expiry date
This commit is contained in:
yflory 2025-06-27 15:28:48 +02:00 committed by GitHub
commit 818003bd72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -97,6 +97,10 @@ define([
});
return;
}
if (k === "until") {
rrule += ";"+k.toUpperCase()+"="+getICSDate(r[k]);
return;
}
rrule += ";"+k.toUpperCase()+"="+r[k];
});
return rrule;