diff options
| author | Henry Jameson <me@hjkos.com> | 2022-02-20 00:04:47 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-02-20 00:04:47 +0200 |
| commit | 2a97bdb39d7533ae55ddb0713d4fb3d670017ea5 (patch) | |
| tree | 2711b2c3a1d23263643c93ec02514ecec1eb46b5 /src/components/timeline/timeline.vue | |
| parent | 8ade11783aa4740a2cff61f27938f3408c3e0eb0 (diff) | |
fix pinned statuses appearing at the bottom of user timeline (and
possibly fetching new ones there)
Diffstat (limited to 'src/components/timeline/timeline.vue')
| -rw-r--r-- | src/components/timeline/timeline.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/timeline/timeline.vue b/src/components/timeline/timeline.vue index 767428f0..c8cd38e0 100644 --- a/src/components/timeline/timeline.vue +++ b/src/components/timeline/timeline.vue @@ -37,7 +37,7 @@ </template> <template v-for="status in timeline.visibleStatuses"> <conversation - v-if="!excludedStatusIdsObject[status.id]" + v-if="status._meta.fetchedFromPinned <= 0" :key="status.id" class="status-fadein" :status-id="status.id" |
