filter chats for which we don't know the request status

This commit is contained in:
Daniel Lugo 2020-01-29 15:09:54 -04:00
parent d898506a28
commit 64cff4b64b

View file

@ -501,7 +501,9 @@ const processChats = () => {
}
}
currentChats = chats.filter(c => c.messages.length > 0)
currentChats = chats
.filter(c => c.messages.length > 0)
.filter(c => typeof pubToIncoming[c.recipientPublicKey] !== 'undefined')
notifyChatsListeners()
}