Update BBL network plugin to 2.1.1 which allows debugger again (#10320)

* Update to latest bbs network plugin, which should allow debugging

* Remove debugger detection and warnings

* Downgrade to 2.1.1 as 2.2 seems to be unstable
This commit is contained in:
Noisyfox
2025-08-05 22:57:41 +08:00
committed by GitHub
parent f4d2d050f5
commit b84fe5561a
2 changed files with 3 additions and 3 deletions

View File

@@ -2587,7 +2587,7 @@ bool GUI_App::on_init_inner()
NetworkAgent::use_legacy_network = app_config->get_bool("legacy_networking");
// Force legacy network plugin if debugger attached
// See https://github.com/bambulab/BambuStudio/issues/6726
if (!NetworkAgent::use_legacy_network) {
/* if (!NetworkAgent::use_legacy_network) {
bool debugger_attached = false;
#if defined(__WINDOWS__)
debugger_attached = IsDebuggerPresent();
@@ -2598,7 +2598,7 @@ bool GUI_App::on_init_inner()
NetworkAgent::use_legacy_network = true;
wxMessageBox("Force using legacy bambu networking plugin because debugger is attached! If the app terminates itself immediately, please delete installed plugin and try again!");
}
}
} */
copy_network_if_available();
on_init_network();