From f2e136e256c896c19cbf2d1845a614a87235f95d Mon Sep 17 00:00:00 2001 From: David Kocik Date: Thu, 23 May 2024 14:15:03 +0200 Subject: [PATCH] Server address --- src/slic3r/GUI/PresetArchiveDatabase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/PresetArchiveDatabase.cpp b/src/slic3r/GUI/PresetArchiveDatabase.cpp index 69d28d7014..d24801eb12 100644 --- a/src/slic3r/GUI/PresetArchiveDatabase.cpp +++ b/src/slic3r/GUI/PresetArchiveDatabase.cpp @@ -666,7 +666,7 @@ bool sync_inner(std::string& manifest) #ifdef SLIC3R_REPO_URL std::string url = SLIC3R_REPO_URL; #else - std::string url = "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"*/; #endif auto http = Http::get(std::move(url)); add_authorization_header(http);