fix: Fetch conversation attributes after contact reset (#4319)

Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
This commit is contained in:
Pranav Raj S
2022-03-29 19:51:51 +05:30
committed by GitHub
parent 3158966241
commit 3f2ac2042f
3 changed files with 4 additions and 2 deletions

View File

@@ -58,6 +58,7 @@ export const actions = {
if (identifier_hash) {
dispatch('conversation/clearConversations', {}, { root: true });
dispatch('conversation/fetchOldConversations', {}, { root: true });
dispatch('conversationAttributes/getAttributes', {}, { root: true });
}
} catch (error) {
const {

View File

@@ -21,6 +21,7 @@ describe('#actions', () => {
['get'],
['conversation/clearConversations', {}, { root: true }],
['conversation/fetchOldConversations', {}, { root: true }],
['conversationAttributes/getAttributes', {}, { root: true }],
]);
});
});