Skip to content

Commit

Permalink
fixup! Added Liked collection to Actors
Browse files Browse the repository at this point in the history
  • Loading branch information
allouis committed Sep 5, 2024
1 parent bce428c commit 43971ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dispatchers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ export async function likedDispatcher(
const results = (await ctx.data.db.get<string[]>(['liked'])) || [];
console.log(results);

let items: Activity[] = [];
let items: Like[] = [];
for (const result of results) {
try {
const thing = await ctx.data.globaldb.get([result]);
Expand Down

0 comments on commit 43971ca

Please sign in to comment.