Add comment

This commit is contained in:
taehoon 2019-03-02 08:21:15 -05:00
parent d7919109ec
commit a0bccbce94
1 changed files with 1 additions and 0 deletions

View File

@ -111,6 +111,7 @@ export const mutations = {
state.currentUser.blockIds = blockIds
},
updateMutes (state, mutedUsers) {
// Reset muted of all fetched users
each(state.users, (user) => { user.muted = false })
// TODO: Remove this line once we get muted property of user object from the api
const newUsers = map(mutedUsers, (user) => ({ ...user, muted: true }))