mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-19 11:38:38 +00:00
fix(irc): type socket error param
This commit is contained in:
@@ -399,7 +399,7 @@ export async function connectIrcClient(options: IrcClientOptions): Promise<IrcCl
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.once("error", (err) => {
|
socket.once("error", (err: unknown) => {
|
||||||
fail(err);
|
fail(err);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user