Fork of Chiri for Astro for my blog
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixing the Bluesky link overwrite

+2 -4
+2 -4
src/components/widgets/sequoia-comments.js
··· 696 696 // Check if there are any replies 697 697 const replies = thread.replies?.filter(isThreadViewPost) ?? []; 698 698 if (replies.length === 0) { 699 - this.state = { type: "empty", postUrl }; 700 - this.state = { type: "empty", blackskyPostUrl }; 699 + this.state = { type: "empty", postUrl, blackskyPostUrl }; 701 700 this.render(); 702 701 return; 703 702 } 704 703 705 - this.state = { type: "loaded", thread, postUrl }; 706 - this.state = { type: "loaded", thread, blackskyPostUrl }; 704 + this.state = { type: "loaded", thread, postUrl, blackskyPostUrl }; 707 705 this.render(); 708 706 } catch (error) { 709 707 const message =