filter chats for which we don't know the request status
This commit is contained in:
parent
d898506a28
commit
64cff4b64b
1 changed files with 3 additions and 1 deletions
|
|
@ -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()
|
notifyChatsListeners()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue