Merge pull request #212 from BeaudanBrown/windows-resolution

Fix resolution for windows
pull/229/head
sachaaaaa 7 years ago committed by GitHub
commit e58db0998a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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