Manually set the dns servers for windows

pull/212/head
Beaudan 6 years ago
parent 0500bb6f4f
commit 72d00e0922

@ -4,6 +4,7 @@
const fetch = require('node-fetch');
const is = require('@sindresorhus/is');
const dns = require('dns');
const process = require('process');
// Will be raised (to 3?) when we get more nodes
const MINIMUM_SWARM_NODES = 1;
@ -42,6 +43,10 @@ class LokiSnodeAPI {
this.swarmsPendingReplenish = {};
this.ourSwarmNodes = {};
this.contactSwarmNodes = {};
// When we package lokinet with messenger we can ensure this ip is correct
if (process.platform === 'win32') {
dns.setServers(['127.0.0.1']);
}
}
async getMyLokiIp() {

Loading…
Cancel
Save