Fix wrong webfinger subject
This commit is contained in:
parent
6a8d8a0501
commit
2c1f179b52
|
@ -5,7 +5,7 @@ const domain = process.env.DOMAIN;
|
||||||
export default function webfinger(router: Router) {
|
export default function webfinger(router: Router) {
|
||||||
router.get("/.well-known/webfinger", (req, res) => {
|
router.get("/.well-known/webfinger", (req, res) => {
|
||||||
res.json({
|
res.json({
|
||||||
"subject": `acct:shadowfacts@${domain}`,
|
"subject": `acct:blog@${domain}`,
|
||||||
"links": [
|
"links": [
|
||||||
{
|
{
|
||||||
"rel": "self",
|
"rel": "self",
|
||||||
|
|
Loading…
Reference in New Issue