We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1cb3b9 commit d4eac76Copy full SHA for d4eac76
1 file changed
packages/core/src/interaction-output.ts
@@ -76,7 +76,7 @@ export class InteractionOutput implements WoT.InteractionOutput {
76
77
const data = this.#valueBuffer ?? (await this.#content.toBuffer());
78
this.dataUsed = true;
79
- const isPooled = data.byteLength < 4096 && data.buffer.byteLength > data.byteLength;
+ const isPooled = data.buffer.byteLength > data.byteLength;
80
81
if (isPooled) {
82
this.#buffer = data.buffer.slice(data.byteOffset, data.byteOffset + data.byteLength);
0 commit comments