disable multicast

This commit is contained in:
CapDog 2020-10-18 09:28:12 -04:00 committed by GitHub
parent 2b7d77dca5
commit 0e8bd53fff

View file

@ -422,6 +422,7 @@ const instantiateGun = () => {
const _gun = /** @type {unknown} */ (new Gun({ const _gun = /** @type {unknown} */ (new Gun({
axe: false, axe: false,
multicast: false,
peers: Config.PEERS peers: Config.PEERS
})) }))
@ -435,6 +436,7 @@ instantiateGun()
const freshGun = async () => { const freshGun = async () => {
const _gun = /** @type {unknown} */ (new Gun({ const _gun = /** @type {unknown} */ (new Gun({
axe: false, axe: false,
multicast: false,
peers: Config.PEERS peers: Config.PEERS
})) }))