aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ical.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ical.c b/src/ical.c
index 309952d..95fef51 100644
--- a/src/ical.c
+++ b/src/ical.c
@@ -152,7 +152,7 @@ static void ical_export_events(FILE * stream, int export_uid)
struct event *ev = LLIST_TS_GET_DATA(i);
date_sec2date_fmt(ev->day, ICALDATEFMT, ical_date);
fputs("BEGIN:VEVENT\n", stream);
- fprintf(stream, "DTSTART:%s\n", ical_date);
+ fprintf(stream, "DTSTART;VALUE=DATE:%s\n", ical_date);
fprintf(stream, "SUMMARY:%s\n", ev->mesg);
if (export_uid) {