We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac15709 commit dae429bCopy full SHA for dae429b
src/server/sse.ts
@@ -103,7 +103,7 @@ export class SSEServerTransport implements Transport {
103
throw new Error("Unsupported rawBody type. rawBody must be one of 'Buffer' or 'string'");
104
}
105
} else {
106
- body = rawBody ?? await getRawBody(req, {
+ body = await getRawBody(req, {
107
limit: MAXIMUM_MESSAGE_SIZE,
108
encoding: ct.parameters.charset ?? "utf-8",
109
});
0 commit comments