From 5675af98646a5a4fb9b6fe52c27cae5a14cd1d10 Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Mon, 3 Feb 2025 14:19:20 +0100 Subject: [PATCH] Fix geolocation service address --- lib/view/v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/view/v2.py b/lib/view/v2.py index 1e0f3c8..db929cc 100644 --- a/lib/view/v2.py +++ b/lib/view/v2.py @@ -639,7 +639,7 @@ def textual_information(data_parsed, geo_data, config, html_output=False): # get_geodata {{{ def get_geodata(location): text = requests.get( - "http://127.0.0.1:8083/:geo-location?location=%s" % location + "http://127.0.0.1:8085/:geo-location?location=%s" % location ).text return json.loads(text)