Remove debugging print statements

This commit is contained in:
Manuel Vögele
2024-09-26 09:48:25 +02:00
parent 196cfae94f
commit 9a77f35179

View File

@@ -70,7 +70,6 @@ pub async fn fetch_next_appointment<U: IntoUrl>(url: U) -> Result<Option<Appoint
let mut series = HashMap::new(); let mut series = HashMap::new();
let mut ends = HashMap::new(); let mut ends = HashMap::new();
for event in events { for event in events {
println!("{}", event.start);
ends.insert(event.uid.clone(), event.end); ends.insert(event.uid.clone(), event.end);
if let Some(rrule) = event.rrule { if let Some(rrule) = event.rrule {
// TODO This is a workaround for https://github.com/fmeringdal/rust-rrule/issues/87 // TODO This is a workaround for https://github.com/fmeringdal/rust-rrule/issues/87