1
Fork 0

webfinger: Property.r#type to Property.rel

This commit is contained in:
Steffo 2024-11-16 01:42:04 +01:00
parent 8b5408f21e
commit a5b9918c43
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -119,7 +119,7 @@ pub async fn webfinger_handler(
let properties = properties
.into_iter()
.map(|prop| ResourceDescriptorPropertyXRD {
r#type: prop.rel, // TODO: Ah si chiama type?
rel: prop.rel,
value: prop.value,
})
.collect();