From 8e85dbc304286fc5933d81b5ae95ab9605ad268b Mon Sep 17 00:00:00 2001 From: xu_yanfeng Date: Sun, 12 Jan 2025 11:26:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=88=E6=81=AF=E5=8F=91=E9=94=99=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cc-inspector/src/scripts/background/portMgr.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cc-inspector/src/scripts/background/portMgr.ts b/cc-inspector/src/scripts/background/portMgr.ts index 7457abd..30156e1 100644 --- a/cc-inspector/src/scripts/background/portMgr.ts +++ b/cc-inspector/src/scripts/background/portMgr.ts @@ -109,7 +109,7 @@ export class PortMgr { } useFrame(id: number, tabID: number) { this.tabUseFrameID[tabID] = id; - const event = new PluginEvent(Page.Background, Page.Devtools, Msg.ResponseUpdateFrames, { id } as ResponseUseFrameData); + const event = new PluginEvent(Page.Background, Page.Devtools, Msg.ResponseUseFrame, { id } as ResponseUseFrameData); this.sendDevtoolMsg(event, tabID); } }