diff options
| author | dave <starpumadev@gmail.com> | 2019-03-28 09:54:55 -0400 |
|---|---|---|
| committer | dave <starpumadev@gmail.com> | 2019-03-28 09:54:55 -0400 |
| commit | e24145e2335a55c20ebbca59247e1d0b74d67bee (patch) | |
| tree | ee778ed93d1f8ddc4ab3229feb1769b1c44e66f9 /src/components/conversation/conversation.js | |
| parent | 43e97e590c98d1f1bb500f96d2b604b968fbbbb3 (diff) | |
| parent | e2e3a65c44c1bd73d3d727333e6163e9b0d07653 (diff) | |
Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma-fe into issue-433-status-reply-form
Diffstat (limited to 'src/components/conversation/conversation.js')
| -rw-r--r-- | src/components/conversation/conversation.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index 5357b67f..f43f9c5e 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -120,9 +120,9 @@ const conversation = { this.$store.dispatch('addNewStatuses', { statuses: ancestors }) this.$store.dispatch('addNewStatuses', { statuses: descendants }) set(this, 'converationStatusIds', [].concat( - ancestors.map(_ => _.id), + ancestors.map(_ => _.id).filter(_ => _ !== this.statusId), this.statusId, - descendants.map(_ => _.id))) + descendants.map(_ => _.id).filter(_ => _ !== this.statusId))) }) .then(() => this.setHighlight(this.statusId)) } else { |
