no empty chats

This commit is contained in:
Daniel Lugo 2020-01-29 14:33:51 -04:00
parent 018978d7ce
commit 0713d5500b

View file

@ -497,7 +497,7 @@ const processChats = () => {
Streams.onDisplayName(() => {}, out.with)
}
currentChats = chats
currentChats = chats.filter(c => c.messages.length > 0)
notifyChatsListeners()
}