mirror of
https://github.com/lennart-k/rustical.git
synced 2026-01-30 02:18:25 +00:00
Calendar export: Fix PRODID
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -1771,7 +1771,7 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "ical"
|
||||
version = "0.11.0"
|
||||
source = "git+https://github.com/lennart-k/ical-rs?branch=dev#8732224dd1514f6dcbccdcf63268a3f223d360e9"
|
||||
source = "git+https://github.com/lennart-k/ical-rs?branch=dev#dd310bbb9866dd2b51d3e83e2b3572e4a3c7f7c9"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"chrono-tz",
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user