diff options
Diffstat (limited to 'src/state/models/feeds/posts.ts')
-rw-r--r-- | src/state/models/feeds/posts.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/models/feeds/posts.ts b/src/state/models/feeds/posts.ts index 8bc75daa4..15145a203 100644 --- a/src/state/models/feeds/posts.ts +++ b/src/state/models/feeds/posts.ts @@ -272,7 +272,7 @@ export class PostsFeedModel { * Check if new posts are available */ async checkForLatest() { - if (this.hasNewLatest || this.isLoading) { + if (!this.hasLoaded || this.hasNewLatest || this.isLoading) { return } const res = await this._getFeed({limit: 1}) |