getAndRenderAccount: render account from pubkey if not found
This commit is contained in:
parent
fe6dd01b68
commit
be3f1104db
|
@ -73,9 +73,9 @@ const accountController: AppController = async (c) => {
|
||||||
const event = await getAuthor(pubkey);
|
const event = await getAuthor(pubkey);
|
||||||
if (event) {
|
if (event) {
|
||||||
return c.json(await renderAccount(event));
|
return c.json(await renderAccount(event));
|
||||||
|
} else {
|
||||||
|
return c.json(await accountFromPubkey(pubkey));
|
||||||
}
|
}
|
||||||
|
|
||||||
return c.json({ error: 'Could not find user.' }, 404);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const accountLookupController: AppController = async (c) => {
|
const accountLookupController: AppController = async (c) => {
|
||||||
|
|
Loading…
Reference in New Issue