From a1e02a983454f68c575fc3215ac9213c3b9ccc30 Mon Sep 17 00:00:00 2001 From: Dan Janosik Date: Thu, 17 Oct 2019 13:11:38 -0400 Subject: [PATCH] Add back missing peers map - Fix #152 --- app/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils.js b/app/utils.js index 0df94e3..e507955 100644 --- a/app/utils.js +++ b/app/utils.js @@ -360,7 +360,7 @@ function refreshExchangeRates() { // Uses ipstack.com API function geoLocateIpAddresses(ipAddresses, provider) { return new Promise(function(resolve, reject) { - if (config.privacyMode || config.ipStackComApiAccessKey === undefined) { + if (config.privacyMode || config.credentials.ipStackComApiAccessKey === undefined) { resolve({}); return;