mirror of
https://github.com/aljazceru/ditto.git
synced 2026-01-08 16:14:22 +01:00
Fix nip05 endpoints
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -79,5 +79,5 @@ export const inviteRequestController: AppController = async (c) => {
|
||||
],
|
||||
}, c);
|
||||
|
||||
return new Response('', { status: 204 });
|
||||
return new Response(null, { status: 204 });
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user