Calendar export: Fix PRODID

This commit is contained in:
Lennart K
2026-01-08 16:17:39 +01:00
parent 977fd75500
commit 43fff63008
2 changed files with 2 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ pub async fn route_get<C: CalendarStore, S: SubscriptionStore>(
});
}
let export_calendar = IcalCalendar::from_objects(objects, props);
let export_calendar = IcalCalendar::from_objects("RustiCal Export".to_owned(), objects, props);
let mut resp = Response::builder().status(StatusCode::OK);
let hdrs = resp.headers_mut().unwrap();