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

zio/stable
Paul Frazee 2023-04-24 20:07:58 -05:00 committed by GitHub
parent f4da2f4442
commit 26cef73b5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -485,6 +485,9 @@ export class PostsFeedModel {
* Used by the composer to add their new posts
*/
async addPostToTop(uri: string) {
if (!this.slices.length) {
return this.refresh()
}
try {
const res = await this.rootStore.agent.app.bsky.feed.getPosts({
uris: [uri],