diff options
Diffstat (limited to 'src/state/models/ui/profile.ts')
-rw-r--r-- | src/state/models/ui/profile.ts | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/src/state/models/ui/profile.ts b/src/state/models/ui/profile.ts index 9dae09ec5..e026a27fc 100644 --- a/src/state/models/ui/profile.ts +++ b/src/state/models/ui/profile.ts @@ -176,11 +176,18 @@ export class ProfileUiModel { filter = 'posts_with_media' } - this.feed = new PostsFeedModel(this.rootStore, 'author', { - actor: this.params.user, - limit: 10, - filter, - }) + this.feed = new PostsFeedModel( + this.rootStore, + 'author', + { + actor: this.params.user, + limit: 10, + filter, + }, + { + isSimpleFeed: ['posts_with_media'].includes(filter), + }, + ) if (this.currentView instanceof PostsFeedModel) { this.feed.setup() |