Skip to content

Commit

Permalink
Fix calendar_multiget
Browse files Browse the repository at this point in the history
  • Loading branch information
lennart-k committed Jan 14, 2025
1 parent 59bb82b commit 4312fba
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ pub async fn get_objects_addressbook_multiget<AS: AddressbookStore + ?Sized>(
if !resource_def.capture_match_info(&mut path) {
not_found.push(href.to_owned());
};
if path.get("addressbook_id").unwrap() != addressbook_id {
not_found.push(href.to_owned());
}
let object_id = path.get("object_id").unwrap();
match store.get_object(principal, addressbook_id, object_id).await {
Ok(object) => result.push(object),
Expand Down

0 comments on commit 4312fba

Please sign in to comment.