This commit is contained in:
Lennart
2024-10-08 15:24:40 +02:00
parent fe13e9f2db
commit 63f16b6081

View File

@@ -55,7 +55,7 @@ pub async fn get_objects_calendar_multiget<C: CalendarStore + ?Sized>(
match store.get_object(principal, cid, uid).await {
Ok(object) => result.push(object),
Err(rustical_store::Error::NotFound) => not_found.push(href.to_owned()),
// TODO: Maybe add event handling on a per-event basis
// TODO: Maybe add error handling on a per-object basis
Err(err) => return Err(err.into()),
};
}