fix: cache account

This commit is contained in:
三咲智子 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

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)