diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/IcsExporter.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/IcsExporter.kt index 7388d6190..6a26954bf 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/IcsExporter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/IcsExporter.kt @@ -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)