From 2b69f5f4d55260bf0765e8ca3ed910560e27a962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ba=C5=99tip=C3=A1n?= Date: Thu, 30 May 2024 10:03:53 +0200 Subject: [PATCH] PresetArchiveDatabase: set preset repo api server URL to linbuilder REVERT BEFORE MERGING to master --- src/slic3r/GUI/PresetArchiveDatabase.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/PresetArchiveDatabase.cpp b/src/slic3r/GUI/PresetArchiveDatabase.cpp index d24801eb12..ffaf64f05c 100644 --- a/src/slic3r/GUI/PresetArchiveDatabase.cpp +++ b/src/slic3r/GUI/PresetArchiveDatabase.cpp @@ -666,7 +666,8 @@ bool sync_inner(std::string& manifest) #ifdef SLIC3R_REPO_URL std::string url = SLIC3R_REPO_URL; #else - std::string url = "https://preset-repo-api.prusa3d.com/v1/repos"/*"https://preset-repo-api-stage.prusa3d.com/v1/repos"*/; + //std::string url = "https://preset-repo-api.prusa3d.com/v1/repos"/*"https://preset-repo-api-stage.prusa3d.com/v1/repos"*/; + std::string url = "http://10.24.3.3:8001/v1/repos"; #endif auto http = Http::get(std::move(url)); add_authorization_header(http);