From d40f53fa853b080fd94a949ef1e658b6ab3a0ec8 Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Wed, 29 Jan 2020 11:35:23 -0400 Subject: [PATCH] remove invalid keywords --- services/gunDB/contact-api/events.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/gunDB/contact-api/events.js b/services/gunDB/contact-api/events.js index 70c222ca..9510a531 100644 --- a/services/gunDB/contact-api/events.js +++ b/services/gunDB/contact-api/events.js @@ -315,17 +315,17 @@ const onIncomingMessages = (cb, userPK, incomingFeedID, gun, user, SEA) => { /** * @type {Outgoings} */ -export let currentOutgoings = {} +let currentOutgoings = {} /** * @type {Outgoings} */ -export let encryptedOutgoings = {} +let encryptedOutgoings = {} /** @type {Set} */ const outgoingsListeners = new Set() -export const notifyOutgoingsListeners = () => { +const notifyOutgoingsListeners = () => { outgoingsListeners.forEach(l => l(currentOutgoings)) }