Update ical-rs version to fix bug with unicode characters in params

addresses #157
This commit is contained in:
Lennart
2025-12-17 17:33:46 +01:00
parent ecad0d4490
commit fb0bd67176
4 changed files with 42 additions and 33 deletions

View File

@@ -36,7 +36,7 @@ pub async fn route_import<AS: AddressbookStore, S: SubscriptionStore>(
card_mut.set_property(Property {
name: "UID".to_owned(),
value: Some(uuid::Uuid::new_v4().to_string()),
params: None,
params: vec![],
});
card = card_mut.verify().unwrap();
}