summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/NodeinfoServerService.ts
diff options
context:
space:
mode:
authortamaina <tamaina@hotmail.co.jp>2024-02-13 15:50:11 +0000
committertamaina <tamaina@hotmail.co.jp>2024-02-13 15:50:11 +0000
commit311c2172d7bc861d915a28650684a1587ecb4695 (patch)
treed376fefc4b524503162350bdfa74baa286dad6e9 /packages/backend/src/server/NodeinfoServerService.ts
parentperf: omit search for immutable static requests (#13265) (diff)
downloadsharkey-311c2172d7bc861d915a28650684a1587ecb4695.tar.gz
sharkey-311c2172d7bc861d915a28650684a1587ecb4695.tar.bz2
sharkey-311c2172d7bc861d915a28650684a1587ecb4695.zip
Revert "update SPDX-FileCopyrightText"
This reverts commit 9b5aeb76d8c9372d67058c512597152b6bf222f2.
Diffstat (limited to 'packages/backend/src/server/NodeinfoServerService.ts')
-rw-r--r--packages/backend/src/server/NodeinfoServerService.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/backend/src/server/NodeinfoServerService.ts b/packages/backend/src/server/NodeinfoServerService.ts
index 058d3d7755..4d94fcdd54 100644
--- a/packages/backend/src/server/NodeinfoServerService.ts
+++ b/packages/backend/src/server/NodeinfoServerService.ts
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: syuilo and misskey-project
+ * SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
@@ -37,12 +37,12 @@ export class NodeinfoServerService {
@bindThis
public getLinks() {
return [{
- rel: 'http://nodeinfo.diaspora.software/ns/schema/2.1',
- href: this.config.url + nodeinfo2_1path,
- }, {
- rel: 'http://nodeinfo.diaspora.software/ns/schema/2.0',
- href: this.config.url + nodeinfo2_0path,
- }];
+ rel: 'http://nodeinfo.diaspora.software/ns/schema/2.1',
+ href: this.config.url + nodeinfo2_1path
+ }, {
+ rel: 'http://nodeinfo.diaspora.software/ns/schema/2.0',
+ href: this.config.url + nodeinfo2_0path,
+ }];
}
@bindThis