From 0a94bade10d0f29942638a9d8bf1a56cab5be4f6 Mon Sep 17 00:00:00 2001 From: Sven Sauleau Date: Fri, 3 Feb 2023 12:11:48 +0000 Subject: [PATCH] nodeinfo: correct lowercase software --- functions/nodeinfo/2.0.ts | 2 +- functions/nodeinfo/2.1.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/nodeinfo/2.0.ts b/functions/nodeinfo/2.0.ts index 9d4e8e2..d21fac3 100644 --- a/functions/nodeinfo/2.0.ts +++ b/functions/nodeinfo/2.0.ts @@ -13,7 +13,7 @@ export const onRequest: PagesFunction = async () => { export async function handleRequest(): Promise { const res = { version: '2.0', - software: { name: 'Wildebeest', version: WILDEBEEST_VERSION }, + software: { name: 'wildebeest', version: WILDEBEEST_VERSION }, protocols: ['activitypub'], services: { outbound: [], inbound: [] }, usage: { users: {} }, diff --git a/functions/nodeinfo/2.1.ts b/functions/nodeinfo/2.1.ts index 04645ef..5c88ea8 100644 --- a/functions/nodeinfo/2.1.ts +++ b/functions/nodeinfo/2.1.ts @@ -14,7 +14,7 @@ export async function handleRequest(): Promise { const res = { version: '2.1', software: { - name: 'Wildebeest', + name: 'wildebeest', version: WILDEBEEST_VERSION, repository: 'https://github.com/cloudflare/wildebeest', },