diff --git a/config/default.json b/config/default.json index 878249fcd..8a3b35bb1 100644 --- a/config/default.json +++ b/config/default.json @@ -5,15 +5,12 @@ "contentProxyUrl": "", "seedNodeList": [ { - "ip_url": "https://116.203.53.213:4433/", "url": "https://storage.seed1.loki.network:4433/" }, { - "ip_url": "https://212.199.114.66:4433/", "url": "https://storage.seed3.loki.network:4433/" }, { - "ip_url": "https://144.76.164.202:4433/", "url": "https://public.loki.foundation:4433/" } ], @@ -22,7 +19,5 @@ "buildExpiration": 0, "commitHash": "", "import": false, - "serverTrustRoot": "BbqY1DzohE4NUZoVF+L18oUPrK3kILllLEJh2UnPSsEx", - "defaultPublicChatServer": "https://chat.getsession.org", - "defaultFileServer": "https://file.getsession.org" + "serverTrustRoot": "BbqY1DzohE4NUZoVF+L18oUPrK3kILllLEJh2UnPSsEx" } diff --git a/config/development.json b/config/development.json index 727846e3e..5435f1942 100644 --- a/config/development.json +++ b/config/development.json @@ -1,8 +1,7 @@ { "seedNodeList": [ { - "url": "http://public.loki.foundation:38157/", - "ip_url": "http://144.76.164.202:38157/" + "url": "http://public.loki.foundation:38157/" } ], "openDevTools": true diff --git a/config/swarm-testing.json b/config/swarm-testing.json index 6840380db..d96c1116e 100644 --- a/config/swarm-testing.json +++ b/config/swarm-testing.json @@ -1,10 +1,8 @@ { "seedNodeList": [ { - "ip_url": "http://127.0.0.1:22129/", "url": "http://localhost:22129/" } ], - "openDevTools": true, - "defaultFileServer": "https://file-dev.getsession.org" + "openDevTools": true } diff --git a/main.js b/main.js index 1a9c42dd3..0b740782c 100644 --- a/main.js +++ b/main.js @@ -169,7 +169,6 @@ function prepareURL(pathSegments, moreKeys) { contentProxyUrl: config.contentProxyUrl, serverTrustRoot: config.get('serverTrustRoot'), appStartInitialSpellcheckSetting, - defaultFileServer: config.get('defaultFileServer'), ...moreKeys, }, }); diff --git a/preload.js b/preload.js index 506e07695..9fcb9173b 100644 --- a/preload.js +++ b/preload.js @@ -48,8 +48,6 @@ window.isBehindProxy = () => Boolean(config.proxyUrl); window.getStoragePubKey = key => (window.isDev() ? key.substring(2) : key); -window.getDefaultFileServer = () => config.defaultFileServer; - window.lokiFeatureFlags = { useOnionRequests: true, useFileOnionRequests: true, @@ -60,8 +58,6 @@ window.lokiFeatureFlags = { if (typeof process.env.NODE_ENV === 'string' && process.env.NODE_ENV.includes('test-integration')) { window.electronRequire = require; - // during test-integration, file server is started on localhost - window.getDefaultFileServer = () => 'http://127.0.0.1:7070'; } window.isBeforeVersion = (toCheck, baseVersion) => { diff --git a/ts/session/snode_api/snodePool.ts b/ts/session/snode_api/snodePool.ts index 50bfc1acc..cfe84f9c6 100644 --- a/ts/session/snode_api/snodePool.ts +++ b/ts/session/snode_api/snodePool.ts @@ -38,7 +38,6 @@ const swarmCache: Map> = new Map(); export type SeedNode = { url: string; - ip_url: string; }; // just get the filtered list @@ -68,7 +67,7 @@ async function tryGetSnodeListFromLokidSeednode( // throw before clearing the lock, so the retries can kick in if (snodes.length === 0) { window?.log?.warn( - `loki_snode_api::tryGetSnodeListFromLokidSeednode - ${seedNode.ip_url} did not return any snodes` + `loki_snode_api::tryGetSnodeListFromLokidSeednode - ${seedNode.url} did not return any snodes` ); // does this error message need to be exactly this? throw new window.textsecure.SeedNodeError('Failed to contact seed node');