a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

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

fix(bluesky-threading): put a decent gap

Mary 2b9f5f08 fa3e4ff9

+1 -1
+1 -1
packages/bluesky/threading/lib/time.ts
··· 7 7 */ 8 8 export function getNow(threadSize: number): number { 9 9 let timestamp = Math.max(Date.now(), lastTimestamp); 10 - lastTimestamp = timestamp + threadSize; 10 + lastTimestamp = timestamp + 2 + threadSize; 11 11 12 12 return timestamp; 13 13 }