Add hyphen between type and subject

This commit is contained in:
Sijmen 2023-01-02 17:50:42 +01:00
parent 7f72891002
commit 733e02eb59
Signed by: vijfhoek
GPG Key ID: DAF7821E067D9C48
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ async fn ics(url: &str) -> String {
let mut new_event = Event::new(); let mut new_event = Event::new();
new_event new_event
.summary(&format!("{kind} {subject}")) .summary(&format!("{kind} - {subject}"))
.description(description) .description(description)
.starts(start) .starts(start)
.ends(end); .ends(end);