webfinger
: yield to type_
This commit is contained in:
parent
8a49903eca
commit
72f3669ef1
1 changed files with 2 additions and 2 deletions
|
@ -83,7 +83,7 @@ pub async fn webfinger_handler(
|
|||
.into_iter()
|
||||
.map(|link| ResourceDescriptorLinkJRD {
|
||||
rel: link.rel,
|
||||
r#type: link.r#type,
|
||||
r#type: link.type_,
|
||||
href: link.href,
|
||||
titles: Default::default(), // TODO: Titles
|
||||
properties: Default::default(), // TODO: Link properties
|
||||
|
@ -128,7 +128,7 @@ pub async fn webfinger_handler(
|
|||
.into_iter()
|
||||
.map(|link| ResourceDescriptorLinkXRD {
|
||||
rel: link.rel,
|
||||
r#type: link.r#type,
|
||||
r#type: link.type_,
|
||||
href: link.href,
|
||||
titles: Default::default(), // TODO: Titles
|
||||
properties: Default::default(), // TODO: Link properties
|
||||
|
|
Loading…
Reference in a new issue