From 4474eebe52e17970832d75b0b3f6c4e026ca36df Mon Sep 17 00:00:00 2001 From: snider Date: Wed, 15 Oct 2025 21:28:38 +0100 Subject: [PATCH] Update server address in ApiServer configuration to use 127.0.0.1 --- src/api/ApiServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/ApiServer.cpp b/src/api/ApiServer.cpp index 726a3469..8bc8dfa9 100644 --- a/src/api/ApiServer.cpp +++ b/src/api/ApiServer.cpp @@ -40,7 +40,7 @@ void ApiServer::run() { .setContactUrl("https://lt.hn/") .setLicenseName("EUPL-1.2") .setLicenseUrl("https://joinup.ec.europa.eu/software/page/eupl/licence-eupl") - .addServer("http://localhost:8000", "server on localhost"); + .addServer("http://127.0.0.1:8000", "server on localhost"); return builder.build(); }());