fix: add return type
This commit is contained in:
parent
83c00ee340
commit
fed5ab7125
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ export async function filterMutedUser(
|
||||||
notes: ScyllaNote[],
|
notes: ScyllaNote[],
|
||||||
user: { id: User["id"] },
|
user: { id: User["id"] },
|
||||||
exclude?: User,
|
exclude?: User,
|
||||||
) {
|
): Promise<ScyllaNote[]> {
|
||||||
const userCache = await UserMutingsCache.init(user.id);
|
const userCache = await UserMutingsCache.init(user.id);
|
||||||
let mutedUserIds = await userCache.getAll();
|
let mutedUserIds = await userCache.getAll();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue