Fix bug in addressbook multiget

This commit is contained in:
Lennart
2025-05-02 14:57:09 +02:00
parent a78dd4a451
commit 5f8dc290d8

View File

@@ -40,6 +40,7 @@ pub async fn get_objects_addressbook_multiget<AS: AddressbookStore>(
let mut path = Path::new(href.as_str()); let mut path = Path::new(href.as_str());
if !resource_def.capture_match_info(&mut path) { if !resource_def.capture_match_info(&mut path) {
not_found.push(href.to_owned()); not_found.push(href.to_owned());
continue;
}; };
let object_id = path.get("object_id").unwrap(); let object_id = path.get("object_id").unwrap();
match store match store