Thread viewer for Bluesky
14
fork

Configure Feed

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

fixed possible bug when rendering loaded hidden replies

+3 -1
+3 -1
post_component.js
··· 612 612 if (accountAPI.isLoggedIn) { 613 613 accountAPI.loadPostIfExists(this.post.uri).then(data => { 614 614 if (data) { 615 - this.post = new Post(data); 615 + this.post.author = data.author; 616 + this.post.viewerData = data.viewer; 617 + this.post.viewerLike = data.viewer?.like; 616 618 617 619 if (this.post.liked) { 618 620 heart.classList.add('liked');