This commit is contained in:
Lennart
2023-09-14 13:32:07 +02:00
parent afae9bccc5
commit d8e6b0e0e0

View File

@@ -41,7 +41,7 @@ impl<R: Resource> HandlePropfind for R {
if props.contains(&"allprops") { if props.contains(&"allprops") {
if props.len() != 1 { if props.len() != 1 {
// allprops MUST be the only queried prop per spec // allprops MUST be the only queried prop per spec
return Err(anyhow!("allprops MUST be the only quereid prop")); return Err(anyhow!("allprops MUST be the only queried prop"));
} }
props = R::list_dead_props(); props = R::list_dead_props();
} }