From bbaa5b761a9a4243d9d267a1a7a22ff0d43d2352 Mon Sep 17 00:00:00 2001 From: Ian Chua Date: Thu, 21 May 2026 19:02:16 +0800 Subject: [PATCH] fix: h2d camera liveview (#13779) --- src/slic3r/Utils/BBLCloudServiceAgent.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/slic3r/Utils/BBLCloudServiceAgent.cpp b/src/slic3r/Utils/BBLCloudServiceAgent.cpp index e538991064..2c17d117fc 100644 --- a/src/slic3r/Utils/BBLCloudServiceAgent.cpp +++ b/src/slic3r/Utils/BBLCloudServiceAgent.cpp @@ -50,7 +50,10 @@ std::map BBLCloudServiceAgent::get_extra_header() { std::map extra_headers; extra_headers.emplace("X-BBL-Client-Type", "slicer"); - extra_headers.emplace("X-BBL-Client-Name", SLIC3R_APP_NAME); + + // Unable to get camera live view when the printer is connected to cloud for H2D + extra_headers.emplace("X-BBL-Client-Name", "BambuStudio"); + extra_headers.emplace("X-BBL-Client-Version", GUI::wxGetApp().get_bbl_client_version()); #if defined(__WINDOWS__) #ifdef _M_X64