From 12bc66e6ed6ca0a5fb13fc8a399e478936e37be0 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Sat, 20 Sep 2025 12:54:45 -0400 Subject: [PATCH] Fix spawning ACP login task (for v0.204.x) (#38565) Release Notes: - Fixed a bug that prevented authenticating in the terminal with Gemini and Claude Code. --- crates/agent_ui/src/acp/thread_view.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/agent_ui/src/acp/thread_view.rs b/crates/agent_ui/src/acp/thread_view.rs index dc427dfd37ccd84a0d1ae3eacc9eb78ba7c86441..1958b326cbee10e6d8baf430809a0ca06921f962 100644 --- a/crates/agent_ui/src/acp/thread_view.rs +++ b/crates/agent_ui/src/acp/thread_view.rs @@ -1605,7 +1605,7 @@ impl AcpThreadView { task.shell = shell; let terminal = terminal_panel.update_in(cx, |terminal_panel, window, cx| { - terminal_panel.spawn_task(&login, window, cx) + terminal_panel.spawn_task(&task, window, cx) })?; let terminal = terminal.await?;