From f1a628dee4c0cd2beba2ba75deadb4be85048588 Mon Sep 17 00:00:00 2001 From: Mark Sinclair Date: Wed, 6 Oct 2021 20:41:47 +0100 Subject: [PATCH] Change freegeoip API hostname --- explorer-api/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer-api/src/main.rs b/explorer-api/src/main.rs index 9d2c586ad3..6cb74e203f 100644 --- a/explorer-api/src/main.rs +++ b/explorer-api/src/main.rs @@ -12,7 +12,7 @@ mod mix_nodes; mod ping; mod state; -const GEO_IP_SERVICE: &str = "https://freegeoip.app/json/"; +const GEO_IP_SERVICE: &str = "https://api.freegeoip.app/json"; #[tokio::main] async fn main() {