Fix nip05 endpoints

This commit is contained in:
Alex Gleason 2024-06-06 17:35:48 -05:00
parent 4f87287d45
commit a30e19b6b2
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ const adminAccountsController: AppController = async (c) => {
const events: NostrEvent[] = [];
if (pending) {
for (const event of await store.query([{ kinds: [3036], ...params }], { signal })) {
for (const event of await store.query([{ kinds: [3036], '#p': [Conf.pubkey], ...params }], { signal })) {
pubkeys.add(event.pubkey);
events.push(event);
}

View File

@ -79,5 +79,5 @@ export const inviteRequestController: AppController = async (c) => {
],
}, c);
return new Response('', { status: 204 });
return new Response(null, { status: 204 });
};