fix #1362, properly add a color at exporting events in an .ics file

This commit is contained in:
tibbi 2021-05-01 22:11:35 +02:00
parent 12efdc90c7
commit 99aec8c67d
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class IcsExporter {
}
val sign = if (reminder.minutes < -1) "" else "-"
writeLn("$TRIGGER$sign${Parser().getDurationCode(Math.abs(reminder.minutes.toLong()))}")
writeLn("$TRIGGER:$sign${Parser().getDurationCode(Math.abs(reminder.minutes.toLong()))}")
writeLn(END_ALARM)
}
}