diff options
Diffstat (limited to 'src/state/models/profile-ui.ts')
-rw-r--r-- | src/state/models/profile-ui.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/state/models/profile-ui.ts b/src/state/models/profile-ui.ts index a9062bf92..0a70525fa 100644 --- a/src/state/models/profile-ui.ts +++ b/src/state/models/profile-ui.ts @@ -139,7 +139,11 @@ export class ProfileUiModel { } async loadMore() { - if (!this.currentView.isLoading && !this.currentView.hasError) { + if ( + !this.currentView.isLoading && + !this.currentView.hasError && + !this.currentView.isEmpty + ) { await this.currentView.loadMore() } } |