mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-12 08:51:53 +00:00
fix(tui): new weird typeerror
This commit is contained in:
parent
5e5308d34d
commit
e080365a7a
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ const asWireText = (raw: unknown): string | null => {
|
|||
}
|
||||
|
||||
if (raw instanceof ArrayBuffer || ArrayBuffer.isView(raw)) {
|
||||
return _wireDecoder.decode(raw as ArrayBufferLike)
|
||||
return _wireDecoder.decode(raw as any as ArrayBuffer)
|
||||
}
|
||||
|
||||
return null
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue