Fix wrong webfinger subject

This commit is contained in:
Shadowfacts 2019-04-05 15:30:33 +00:00
parent 6a8d8a0501
commit 2c1f179b52
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ const domain = process.env.DOMAIN;
export default function webfinger(router: Router) {
router.get("/.well-known/webfinger", (req, res) => {
res.json({
"subject": `acct:shadowfacts@${domain}`,
"subject": `acct:blog@${domain}`,
"links": [
{
"rel": "self",