fix: cache account

zio/stable
三咲智子 2022-11-25 18:45:39 +08:00
parent 9f44e607ad
commit 569ae00284
No known key found for this signature in database
GPG Key ID: 69992F2250DFD93E
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export function fetchAccount(id: string): Promise<Account> {
return promise
}
export function fetchAccountByName(acct: string): Promise<Account> {
export async function fetchAccountByName(acct: string): Promise<Account> {
const key = `account:${acct}`
const cached = cache.get(key)
if (cached)