clear userId property of timeline by default in clearTimeline action

This commit is contained in:
taehoon 2019-07-02 14:32:46 -04:00
parent 221db9f210
commit 0e9b8be88c
2 changed files with 4 additions and 3 deletions

View file

@ -395,8 +395,9 @@ export const mutations = {
state[key] = value
})
},
clearTimeline (state, { timeline }) {
state.timelines[timeline] = emptyTl(state.timelines[timeline].userId)
clearTimeline (state, { timeline, excludeUserId = false }) {
const userId = excludeUserId ? state.timelines[timeline].userId : undefined
state.timelines[timeline] = emptyTl(userId)
},
clearNotifications (state) {
state.notifications = emptyNotifications()