Merge branch 'tusooa/chat-user' into 'develop'

Populate user card on receiving chats

See merge request pleroma/pleroma-fe!1766
This commit is contained in:
HJ 2023-04-11 21:26:39 +00:00
commit 9a8f52a38d
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ const chats = {
const newChatMessageSideEffects = (chat) => {
maybeShowChatNotification(store, chat)
}
commit('addNewUsers', chats.map(k => k.account).filter(k => k))
commit('addNewChats', { dispatch, chats, rootGetters, newChatMessageSideEffects })
},
updateChat ({ commit }, { chat }) {