why did i do that

This commit is contained in:
Henry Jameson 2019-03-21 22:49:26 +02:00
parent 307b4ba698
commit ee94a6732a

View file

@ -93,6 +93,11 @@ const conversation = {
statuses.forEach(status => this.relevantIds.push(status.id))
})
.then(() => this.setHighlight(this.statusId))
} else {
const id = this.$route.params.id
this.$store.state.api.backendInteractor.fetchStatus({id})
.then((status) => this.$store.dispatch('addNewStatuses', { statuses: [status] }))
.then(() => this.fetchConversation())
}
},
getReplies (id) {