惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
B
Blog
博客园_首页
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
C
Check Point Blog
Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
小众软件
小众软件

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
Fix iOS selected agent chat routing · openclaw/openclaw@5...
joshavant · 2026-06-06 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -6,6 +6,7 @@ struct ChatProTab: View {

66

@Environment(NodeAppModel.self) private var appModel

77

@Environment(\.colorScheme) private var colorScheme

88

@State private var viewModel: OpenClawChatViewModel?

9+

@State private var programmaticSessionSwitchCounts: [String: Int] = [:]

910
1011

var body: some View {

1112

NavigationStack {

@@ -104,6 +105,14 @@ struct ChatProTab: View {

104105

sessionKey: sessionKey,

105106

transport: IOSGatewayChatTransport(gateway: self.appModel.operatorSession),

106107

onSessionChanged: { sessionKey in

108+

if self.consumeProgrammaticSessionSwitch(sessionKey) {

109+

// Programmatic switches complete asynchronously; stale completions

110+

// must repair back to the current app-model session, not become focus.

111+

if sessionKey != self.appModel.chatSessionKey {

112+

self.syncChatViewModel()

113+

}

114+

return

115+

}

107116

self.appModel.focusChatSession(sessionKey)

108117

},

109118

diagnosticsLog: { message in

@@ -112,9 +121,26 @@ struct ChatProTab: View {

112121

return

113122

}

114123

guard viewModel.sessionKey != sessionKey else { return }

124+

self.recordProgrammaticSessionSwitch(sessionKey)

115125

viewModel.switchSession(to: sessionKey)

116126

}

117127
128+

private func recordProgrammaticSessionSwitch(_ sessionKey: String) {

129+

self.programmaticSessionSwitchCounts[sessionKey, default: 0] += 1

130+

}

131+
132+

private func consumeProgrammaticSessionSwitch(_ sessionKey: String) -> Bool {

133+

guard let count = self.programmaticSessionSwitchCounts[sessionKey] else {

134+

return false

135+

}

136+

if count <= 1 {

137+

self.programmaticSessionSwitchCounts[sessionKey] = nil

138+

} else {

139+

self.programmaticSessionSwitchCounts[sessionKey] = count - 1

140+

}

141+

return true

142+

}

143+
118144

private var talkControl: OpenClawChatTalkControl {

119145

OpenClawChatTalkControl(

120146

isEnabled: self.appModel.talkMode.isEnabled,

Original file line numberDiff line numberDiff line change

@@ -502,7 +502,7 @@ struct CommandCenterTab: View {

502502

trailing: "session",

503503

color: self.gatewayConnected ? OpenClawBrand.ok : .secondary,

504504

progress: nil,

505-

route: .chat(self.appModel.chatSessionKey)),

505+

route: .chat(self.appModel.defaultChatSessionKey)),

506506

WorkItem(

507507

id: "talk-mode",

508508

icon: "waveform",

Original file line numberDiff line numberDiff line change

@@ -762,6 +762,7 @@ final class NodeAppModel {

762762

let selected = (self.selectedAgentId ?? "").trimmingCharacters(in: .whitespacesAndNewlines)

763763

if !selected.isEmpty, !decoded.agents.contains(where: { $0.id == selected }) {

764764

self.selectedAgentId = nil

765+

self.focusedChatSessionKey = nil

765766

}

766767

self.talkMode.updateMainSessionKey(self.mainSessionKey)

767768

self.homeCanvasRevision &+= 1

@@ -779,13 +780,19 @@ final class NodeAppModel {

779780
780781

func setSelectedAgentId(_ agentId: String?) {

781782

let trimmed = (agentId ?? "").trimmingCharacters(in: .whitespacesAndNewlines)

783+

let nextSelectedAgentId = trimmed.isEmpty ? nil : trimmed

784+

let currentSelectedAgentId = self.selectedAgentId?.trimmingCharacters(in: .whitespacesAndNewlines)

785+

let selectedAgentChanged = currentSelectedAgentId != nextSelectedAgentId

782786

let stableID = (self.connectedGatewayID ?? "").trimmingCharacters(in: .whitespacesAndNewlines)

783787

if stableID.isEmpty {

784-

self.selectedAgentId = trimmed.isEmpty ? nil : trimmed

788+

self.selectedAgentId = nextSelectedAgentId

785789

} else {

786-

self.selectedAgentId = trimmed.isEmpty ? nil : trimmed

790+

self.selectedAgentId = nextSelectedAgentId

787791

GatewaySettingsStore.saveGatewaySelectedAgentId(stableID: stableID, agentId: self.selectedAgentId)

788792

}

793+

if selectedAgentChanged {

794+

self.focusedChatSessionKey = nil

795+

}

789796

self.talkMode.updateMainSessionKey(self.mainSessionKey)

790797

self.homeCanvasRevision &+= 1

791798

if let relay = ShareGatewayRelaySettings.loadConfig() {

@@ -1837,9 +1844,13 @@ extension NodeAppModel {

18371844

{

18381845

return focused

18391846

}

1847+

return self.defaultChatSessionKey

1848+

}

1849+
1850+

var defaultChatSessionKey: String {

18401851

// Keep chat aligned with the gateway's resolved main session key.

18411852

// A hardcoded "ios" base creates synthetic placeholder sessions in the chat UI.

1842-

return self.mainSessionKey

1853+

self.mainSessionKey

18431854

}

18441855
18451856

func openChat(sessionKey: String?) {

@@ -2005,6 +2016,7 @@ extension NodeAppModel {

20052016

self.gatewayDefaultAgentId = nil

20062017

self.gatewayAgents = []

20072018

self.selectedAgentId = GatewaySettingsStore.loadGatewaySelectedAgentId(stableID: stableID)

2019+

self.focusedChatSessionKey = nil

20082020

self.homeCanvasRevision &+= 1

20092021

self.apnsLastRegisteredTokenHex = nil

20102022

}

Original file line numberDiff line numberDiff line change

@@ -214,6 +214,44 @@ private final class MockBootstrapNotificationCenter: NotificationCentering, @unc

214214

#expect(appModel.mainSessionKey == "agent:agent-123:main")

215215

}

216216
217+

@Test @MainActor func selectingAgentClearsExplicitChatFocus() {

218+

let appModel = NodeAppModel()

219+

appModel.gatewayDefaultAgentId = "main"

220+

let rustSessionKey = SessionKey.makeAgentSessionKey(agentId: "rust-claw", baseKey: "main")

221+
222+

appModel.setSelectedAgentId("rust-claw")

223+

#expect(appModel.chatSessionKey == rustSessionKey)

224+

appModel.focusChatSession(rustSessionKey)

225+
226+

appModel.setSelectedAgentId("main")

227+

#expect(appModel.defaultChatSessionKey == "main")

228+

#expect(appModel.mainSessionKey == "main")

229+

#expect(appModel.chatSessionKey == "main")

230+

}

231+
232+

@Test @MainActor func sameSelectedAgentKeepsExplicitChatFocus() {

233+

let appModel = NodeAppModel()

234+

appModel.gatewayDefaultAgentId = "main"

235+

appModel.setSelectedAgentId("main")

236+

appModel.openChat(sessionKey: "incident-42")

237+
238+

appModel.setSelectedAgentId("main")

239+

#expect(appModel.defaultChatSessionKey == "main")

240+

#expect(appModel.chatSessionKey == "incident-42")

241+

}

242+
243+

@Test @MainActor func defaultChatSessionKeyIgnoresExplicitChatFocus() {

244+

let appModel = NodeAppModel()

245+

appModel.gatewayDefaultAgentId = "main"

246+

appModel.setSelectedAgentId("rust-claw")

247+

appModel.openChat(sessionKey: "incident-42")

248+
249+

#expect(appModel.defaultChatSessionKey == SessionKey.makeAgentSessionKey(

250+

agentId: "rust-claw",

251+

baseKey: "main"))

252+

#expect(appModel.chatSessionKey == "incident-42")

253+

}

254+
217255

@Test @MainActor func execApprovalPromptPresentationTracksLatestNotificationTap() throws {

218256

let appModel = NodeAppModel()

219257

try appModel._test_presentExecApprovalPrompt(