Bluesky app fork with some witchin' additions 💫

If adding the user's post when empty, just refresh (#530)

authored by

Paul Frazee and committed by
GitHub
26cef73b f4da2f44

+3
+3
src/state/models/feeds/posts.ts
··· 485 485 * Used by the composer to add their new posts 486 486 */ 487 487 async addPostToTop(uri: string) { 488 + if (!this.slices.length) { 489 + return this.refresh() 490 + } 488 491 try { 489 492 const res = await this.rootStore.agent.app.bsky.feed.getPosts({ 490 493 uris: [uri],