From 43971ca3a9d250f12ee22a6819aeab1ee3671f0f Mon Sep 17 00:00:00 2001 From: Fabien O'Carroll Date: Thu, 5 Sep 2024 10:30:04 +0700 Subject: [PATCH] fixup! Added Liked collection to Actors --- src/dispatchers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispatchers.ts b/src/dispatchers.ts index ade1d967..d819dad4 100644 --- a/src/dispatchers.ts +++ b/src/dispatchers.ts @@ -444,7 +444,7 @@ export async function likedDispatcher( const results = (await ctx.data.db.get(['liked'])) || []; console.log(results); - let items: Activity[] = []; + let items: Like[] = []; for (const result of results) { try { const thing = await ctx.data.globaldb.get([result]);