mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 12:52:27 +00:00
dav: Add namespace to propname
This commit is contained in:
@@ -54,8 +54,14 @@ fn propfind_prop() {
|
||||
propfind,
|
||||
PropfindElement {
|
||||
prop: PropfindType::Prop(PropElement(vec![
|
||||
Propname("displayname".to_owned()),
|
||||
Propname("color".to_owned()),
|
||||
Propname {
|
||||
name: "displayname".to_owned(),
|
||||
ns: Some("DAV:".to_owned())
|
||||
},
|
||||
Propname {
|
||||
name: "color".to_owned(),
|
||||
ns: Some("DAV:".to_owned())
|
||||
},
|
||||
]))
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user