From 2de19e1b3ec862cb391277fe51e61b3b6f0f6f8d Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Thu, 16 Jan 2025 19:39:57 +0100 Subject: [PATCH] Fix server address --- lib/view/line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/view/line.py b/lib/view/line.py index 1198a5d..4a884f2 100644 --- a/lib/view/line.py +++ b/lib/view/line.py @@ -239,7 +239,7 @@ def render_moonday(_, query): def get_geodata(location): # text = requests.get("http://localhost:8004/%s" % location).text - text = requests.get("http://127.0.0.1:8083/:geo-location?location=%s" % location).text + text = requests.get("http://127.0.0.1:8085/:geo-location?location=%s" % location).text return json.loads(text)