From 3ae47ee86530b7c2a72be3d9fb85d5225a1724a1 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 19 Dec 2023 22:01:41 -0600 Subject: [PATCH] NIP-11: fix pubkey field --- src/controllers/nostr/relay-info.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/nostr/relay-info.ts b/src/controllers/nostr/relay-info.ts index 83b2c579..0edafbd3 100644 --- a/src/controllers/nostr/relay-info.ts +++ b/src/controllers/nostr/relay-info.ts @@ -5,7 +5,7 @@ const relayInfoController: AppController = (c) => { return c.json({ name: 'Ditto', description: 'Nostr and the Fediverse.', - pubkey: '', + pubkey: Conf.pubkey, contact: `mailto:${Conf.adminEmail}`, supported_nips: [1, 5, 9, 11, 45, 46, 98], software: 'Ditto',