Display edited status
This commit is contained in:
parent
50b3f35ca6
commit
8b7bcd2d30
1 changed files with 6 additions and 1 deletions
|
@ -99,7 +99,12 @@ const api = {
|
||||||
timeline: 'friends'
|
timeline: 'friends'
|
||||||
})
|
})
|
||||||
} else if (message.event === 'status.update') {
|
} else if (message.event === 'status.update') {
|
||||||
// Insert dispatch code here.
|
dispatch('addNewStatuses', {
|
||||||
|
statuses: [message.status],
|
||||||
|
userId: false,
|
||||||
|
showImmediately: message.status.id in timelineData.visibleStatusesObject,
|
||||||
|
timeline: 'friends'
|
||||||
|
})
|
||||||
} else if (message.event === 'delete') {
|
} else if (message.event === 'delete') {
|
||||||
dispatch('deleteStatusById', message.id)
|
dispatch('deleteStatusById', message.id)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue