revert activeAt position

pull/1220/head
Vincent 5 years ago
parent e7569a569c
commit 5b68ea69f7

@ -125,10 +125,6 @@ export const _getLeftPaneLists = (
continue;
}
if (!conversation.activeAt) {
continue;
}
if (conversation.activeAt !== undefined) {
allContacts.push(conversation);
}
@ -137,6 +133,10 @@ export const _getLeftPaneLists = (
unreadCount += conversation.unreadCount;
}
if (!conversation.activeAt) {
continue;
}
if (conversation.isArchived) {
archivedConversations.push(conversation);
} else {

Loading…
Cancel
Save