use http for ipinfo so it doesnt break linux machines without ssl capabilities
Signed-off-by: si458 <simonsmith5521@gmail.com>
si458 committed
Feb 24, 2026 at 18:21 UTC
447bb5749e3b58d86d2207d3f75cf1518e49352b
1 file changed
+2
-2
agents/meshcore.js
+2
-2
@@ -992,8 +992,8 @@ function getIpLocationDataEx(func) {
992
if (func) { func(result); }
993
}
994
995
- tryEndpoint('https://v6.ipinfo.io/json', function () {
996
- tryEndpoint('https://ipinfo.io/json', null);
995
+ tryEndpoint('http://v6.ipinfo.io/json', function () {
996
+ tryEndpoint('http://ipinfo.io/json', null);
997
});
998
999
return true;