From 917591da6948ea96cdca5892be3e06b7ad24ebdc Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Mon, 6 Oct 2025 08:16:16 -0400 Subject: [PATCH] fix deserialization of killCompanionBrowser message --- crates/project/src/debugger/session.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/project/src/debugger/session.rs b/crates/project/src/debugger/session.rs index 8a505dd6f785463b59e39b3a7845eca9ad208988..1f7a77d72c73ed53b05dd91bc2299c88077a3a43 100644 --- a/crates/project/src/debugger/session.rs +++ b/crates/project/src/debugger/session.rs @@ -2937,7 +2937,7 @@ struct LaunchBrowserInCompanionParams { #[derive(Serialize, Deserialize)] #[serde(rename_all = "camelCase")] struct KillCompanionBrowserParams { - launch_id: String, + launch_id: u64, } async fn spawn_companion( @@ -2981,7 +2981,6 @@ async fn spawn_companion( } async fn get_or_install_companion(node: NodeRuntime, cx: &mut AsyncApp) -> Result { - // FIXME publish const PACKAGE_NAME: &str = "@zed-industries/js-debug-companion-cli"; async fn install_latest_version(dir: PathBuf, node: NodeRuntime) -> Result {