We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f31044 commit 4905f5bCopy full SHA for 4905f5b
supabase/functions/repost-bot/index.ts
@@ -46,7 +46,7 @@ async function processTags(tags: AppBskyFeedDefs.PostView[]) {
46
const exists = await mentionReposted(tag.cid);
47
const liked = tag.viewer?.like;
48
49
- if (exists && liked) {
+ if (exists || liked) {
50
console.log(`Already reposted: ${tag.cid}`);
51
continue;
52
}
0 commit comments