Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

More retries when resuming non-stale account (#4156)

authored by

Eric Bailey and committed by
GitHub
b9373723 690926dd

+1 -1
+1 -1
src/state/session/agent.ts
··· 53 53 agent.session = prevSession 54 54 if (!storedAccount.deactivated) { 55 55 // Intentionally not awaited to unblock the UI: 56 - networkRetry(1, () => agent.resumeSession(prevSession)) 56 + networkRetry(3, () => agent.resumeSession(prevSession)) 57 57 } 58 58 } 59 59