Ensure incoming pinned conversations are not archived

Co-authored-by: Chris Svenningsen <chris@carbonfive.com>
This commit is contained in:
Sidney Keese 2020-11-09 07:32:59 -08:00 committed by GitHub
parent 91beef7797
commit bba9df3149
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -725,7 +725,7 @@ export async function mergeAccountRecord(
});
remotelyPinnedConversations.forEach(conversation => {
conversation.set({ isPinned: true });
conversation.set({ isPinned: true, isArchived: false });
updateConversation(conversation.attributes);
});