This commit is contained in:
philipp 2023-05-24 15:16:53 +02:00
parent 91512ecdfc
commit 3d801121e7

View File

@ -16,9 +16,9 @@ PRODID:-//rudernlinz.at//Trips//DE"#,
res.push_str("\nBEGIN:VEVENT");
res.push_str(&format!("\nUID:{}@rudernlinz.at", event.id));
res.push_str(&format!(
"\nDTSTART:{}T{}Z",
"\nDTSTART:{}T{}00Z",
event.day.replace("-", ""),
event.planned_starting_time
event.planned_starting_time.replace(":", "")
));
res.push_str(&format!("\nSUMMARY:{}", event.name));