mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-12 19:49:59 +05:00
Properly format UNTIL field in ics export
- Before that, the end date of recurring event was formatted as timestamp and made ICS export bogus
This commit is contained in:
parent
9658f4c21b
commit
786a16b1b6
@ -97,6 +97,10 @@ define([
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (k === "until") {
|
||||
rrule += ";"+k.toUpperCase()+"="+getICSDate(r[k]);
|
||||
return;
|
||||
}
|
||||
rrule += ";"+k.toUpperCase()+"="+r[k];
|
||||
});
|
||||
return rrule;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user