Thread viewer for Bluesky
14
fork

Configure Feed

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

show "–" if no. of (re)posts is 0

+2 -2
+2 -2
skythread.js
··· 562 `<a href="https://bsky.app/profile/${user.handle}" target="_blank">${user.handle}</a>` 563 }), 564 $tag('td', { text: ((user.own + user.reposts) / days).toFixed(1) }), 565 - $tag('td', { text: (user.own / days).toFixed(1) }), 566 - $tag('td', { text: (user.reposts / days).toFixed(1) }), 567 $tag('td.percent', { text: ((user.own + user.reposts) * 100 / total).toFixed(1) + '%' }) 568 ); 569
··· 562 `<a href="https://bsky.app/profile/${user.handle}" target="_blank">${user.handle}</a>` 563 }), 564 $tag('td', { text: ((user.own + user.reposts) / days).toFixed(1) }), 565 + $tag('td', { text: user.own > 0 ? (user.own / days).toFixed(1) : '–' }), 566 + $tag('td', { text: user.reposts > 0 ? (user.reposts / days).toFixed(1) : '–' }), 567 $tag('td.percent', { text: ((user.own + user.reposts) * 100 / total).toFixed(1) + '%' }) 568 ); 569