correct export

This commit is contained in:
Daniel Lugo 2020-02-20 15:52:03 -04:00
parent 335f8ac222
commit cce1a75ad6

View file

@ -436,7 +436,7 @@ const onOutgoing = cb => {
/** @type {Chat[]} */
let currentChats = []
export const getChats = () => currentChats
const getChats = () => currentChats
/** @type {Set<ChatsListener>} */
const chatsListeners = new Set()
@ -604,5 +604,6 @@ module.exports = {
onChats,
getAvatar,
getDisplayName,
getHandshakeAddress
getHandshakeAddress,
getChats
}