fix: Add rel attribute to host-meta (#8583)

* Add rel attribute to host-meta

* CHANGELOG
This commit is contained in:
MeiMei
2022-05-01 19:14:14 +09:00
committed by GitHub
parent e083205824
commit 60391ff37e
2 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,7 @@ router.options(allPath, async ctx => {
router.get('/.well-known/host-meta', async ctx => {
ctx.set('Content-Type', xrd);
ctx.body = XRD({ element: 'Link', attributes: {
rel: 'lrdd',
type: xrd,
template: `${config.url}${webFingerPath}?resource={uri}`,
} });