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

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);
});