From 01373465b0603bf9a80ab5f8a45d34b9c310366e Mon Sep 17 00:00:00 2001 From: zhayujie Date: Wed, 17 Jun 2026 22:04:24 +0800 Subject: [PATCH] fix(web): correct Bridge import path in MessageDeleteHandler #2902 --- channel/web/web_channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channel/web/web_channel.py b/channel/web/web_channel.py index 1d27f8ba..2496b0dc 100644 --- a/channel/web/web_channel.py +++ b/channel/web/web_channel.py @@ -4476,7 +4476,7 @@ class MessageDeleteHandler: # 2. Sync agent's in-memory context so its next turn sees the # same history as the DB. Handled by the agent_bridge helper. try: - from bridge import Bridge + from bridge.bridge import Bridge Bridge().get_agent_bridge().sync_session_messages_from_store(session_id) except Exception as sync_err: logger.warning(f"[WebChannel] Failed to sync agent memory: {sync_err}")