aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2019-01-25 16:20:42 +0300
committerHenry Jameson <me@hjkos.com>2019-01-25 16:24:41 +0300
commiteb339511864a89ecf2e8381a161034fdd6a8b130 (patch)
tree884ac36f3fc8779b6b0651a7c124927742d9c774
parentf48e3d0db8029701461250bb8f47ec33f0d68606 (diff)
hotfix
-rw-r--r--src/components/conversation/conversation.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js
index ae8ab4fc..0ecbaddc 100644
--- a/src/components/conversation/conversation.js
+++ b/src/components/conversation/conversation.js
@@ -1,9 +1,9 @@
-import { reduce, filter, sortBy } from 'lodash'
+import { reduce, filter } from 'lodash'
import Status from '../status/status.vue'
const sortById = (a, b) => {
- const seqA = Number(a.action.id)
- const seqB = Number(b.action.id)
+ const seqA = Number(a.id)
+ const seqB = Number(b.id)
const isSeqA = !Number.isNaN(seqA)
const isSeqB = !Number.isNaN(seqB)
if (isSeqA && isSeqB) {
@@ -13,13 +13,13 @@ const sortById = (a, b) => {
} else if (!isSeqA && isSeqB) {
return -1
} else {
- return a.action.id > b.action.id ? -1 : 1
+ return a.id > b.id ? -1 : 1
}
}
const sortAndFilterConversation = (conversation) => {
conversation = filter(conversation, (status) => status.type !== 'retweet')
- return sortBy(conversation, sortById)
+ return conversation.filter(_ => _).sort(sortById)
}
const conversation = {