From e1bc55fcf45e4333b2a528cfe19807ffea283274 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 25 Mar 2024 12:35:57 -0500 Subject: [PATCH] updateCredentialsController: withSource true --- src/controllers/api/accounts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/api/accounts.ts b/src/controllers/api/accounts.ts index 451c0b1..76e2a7e 100644 --- a/src/controllers/api/accounts.ts +++ b/src/controllers/api/accounts.ts @@ -221,7 +221,7 @@ const updateCredentialsController: AppController = async (c) => { tags: [], }, c); - const account = await renderAccount(event); + const account = await renderAccount(event, { withSource: true }); return c.json(account); };