webfinger
: Property.r#type to Property.rel
This commit is contained in:
parent
8b5408f21e
commit
a5b9918c43
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ pub async fn webfinger_handler(
|
||||||
let properties = properties
|
let properties = properties
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.map(|prop| ResourceDescriptorPropertyXRD {
|
.map(|prop| ResourceDescriptorPropertyXRD {
|
||||||
r#type: prop.rel, // TODO: Ah si chiama type?
|
rel: prop.rel,
|
||||||
value: prop.value,
|
value: prop.value,
|
||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
|
|
Loading…
Reference in a new issue