Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Hackfix to avoid creating identical profile objects during account creation

+6
+6
src/state/session/index.tsx
··· 237 237 /*dont await*/ agent.upsertProfile(_existing => { 238 238 return { 239 239 displayName: '', 240 + 241 + // HACKFIX 242 + // creating a bunch of identical profile objects is breaking the relay 243 + // tossing this unspecced field onto it to reduce the size of the problem 244 + // -prf 245 + createdAt: new Date().toISOString(), 240 246 } 241 247 }) 242 248 }