add the Confirmed Status before alarms

This commit is contained in:
tibbi 2017-04-05 22:50:10 +02:00
parent af9351cf3b
commit cf1b13d533
1 changed files with 2 additions and 1 deletions

View File

@ -35,11 +35,12 @@ class IcsExporter {
event.endTS.let { out.writeLn("$DTEND:${Formatter.getExportedTime(it)}") }
}
out.writeLn("$STATUS$CONFIRMED")
fillRepeatInterval(event, out)
fillReminders(event, out)
fillIgnoredOccurrences(event, out)
out.writeLn("$STATUS$CONFIRMED")
out.writeLn(END_EVENT)
}
out.writeLn(END_CALENDAR)