Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Create a profile record on new user (#2520)

* Create a profile record on new user

* Dont hold up account creation for the profile

authored by

Paul Frazee and committed by
GitHub
8cc1bd0c 40c757af

+6
+6
src/state/session/index.tsx
··· 223 223 throw new Error(`session: createAccount failed to establish a session`) 224 224 } 225 225 226 + /*dont await*/ agent.upsertProfile(_existing => { 227 + return { 228 + displayName: handle, 229 + } 230 + }) 231 + 226 232 const account: SessionAccount = { 227 233 service: agent.service.toString(), 228 234 did: agent.session.did,