From 0e8bd53fff67f98cbbc67513e005c287a2520c55 Mon Sep 17 00:00:00 2001 From: CapDog <34176400+capitalistdog@users.noreply.github.com> Date: Sun, 18 Oct 2020 09:28:12 -0400 Subject: [PATCH] disable multicast --- services/gunDB/Mediator/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/gunDB/Mediator/index.js b/services/gunDB/Mediator/index.js index cb1cc805..4c941fb4 100644 --- a/services/gunDB/Mediator/index.js +++ b/services/gunDB/Mediator/index.js @@ -422,6 +422,7 @@ const instantiateGun = () => { const _gun = /** @type {unknown} */ (new Gun({ axe: false, + multicast: false, peers: Config.PEERS })) @@ -435,6 +436,7 @@ instantiateGun() const freshGun = async () => { const _gun = /** @type {unknown} */ (new Gun({ axe: false, + multicast: false, peers: Config.PEERS }))