diff --git a/src/slic3r/Utils/SimplyPrint.cpp b/src/slic3r/Utils/SimplyPrint.cpp index 4e8f1606984..a33a1b96c2c 100644 --- a/src/slic3r/Utils/SimplyPrint.cpp +++ b/src/slic3r/Utils/SimplyPrint.cpp @@ -27,7 +27,7 @@ namespace Slic3r { static constexpr GUI::HttpServer::port_type CALLBACK_PORT = 21328; static const std::string CALLBACK_URL = "http://localhost:21328/callback"; static const std::string RESPONSE_TYPE = "code"; -static const std::string CLIENT_ID = "simplyprintorcaslicer"; +static const std::string CLIENT_ID = "simplyprintsuperslicer"; static const std::string CLIENT_SCOPES = "user.read files.temp_upload"; static const std::string OAUTH_CREDENTIAL_PATH = "simplyprint_oauth.json"; static const std::string TOKEN_URL = URL_BASE_API"/oauth2/Token"; @@ -180,7 +180,7 @@ bool SimplyPrint::do_api_call(std::function const auto create_request = [this, &build_request, &res, &on_complete](const std::string& access_token, bool is_retry) { auto http = build_request(is_retry); set_auth(http, access_token); - http.header("User-Agent", "SimplyPrint Orca Plugin") + http.header("User-Agent", "SimplyPrint SuperSlicer Plugin") .on_complete([&](std::string body, unsigned http_status) { res = on_complete(body, http_status); });