A simple tool which lets you scrape twitter accounts and crosspost them to bluesky accounts! Comes with a CLI and a webapp for managing profiles! Works with images/videos/link embeds/threads.

Merge pull request #3 from j4ckxyz/codex/fix-duplicate-crosspost-issue-for-threads

Fix reply root selection for threaded splits

authored by

jack and committed by
GitHub
b89e9e16 30419452

+1 -1
+1 -1
src/index.ts
··· 1339 1339 parentRef = { uri: lastPostInfo.uri, cid: lastPostInfo.cid }; 1340 1340 } 1341 1341 1342 - rootRef = lastPostInfo.root || parentRef; // Propagate root, or use parent as root if none 1342 + rootRef = lastPostInfo.root || { uri: lastPostInfo.uri, cid: lastPostInfo.cid }; 1343 1343 } 1344 1344 1345 1345 if (parentRef && rootRef) {