mirror of https://github.com/openclaw/openclaw.git
fix(ci): resolve chrome websocket raw-data typing
This commit is contained in:
parent
7066d5e192
commit
7365aefa19
|
|
@ -134,7 +134,7 @@ async function canRunCdpHealthCommand(
|
|||
handshakeTimeoutMs: timeoutMs,
|
||||
});
|
||||
let settled = false;
|
||||
const onMessage = (raw: WebSocket.RawData) => {
|
||||
const onMessage = (raw: Parameters<typeof rawDataToString>[0]) => {
|
||||
if (settled) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue