mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-06-05 21:59:17 +02:00
fix #1362, properly add a color at exporting events in an .ics file
This commit is contained in:
@ -98,7 +98,7 @@ class IcsExporter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
val sign = if (reminder.minutes < -1) "" else "-"
|
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)
|
writeLn(END_ALARM)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user