Skip to content

Commit 8316825

Browse files
authored
Fix indent (#807)
1 parent 8e15edc commit 8316825

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/client/streamableHttp.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export class StreamableHTTPClientTransport implements Transport {
207207
headers.set("last-event-id", resumptionToken);
208208
}
209209

210-
const response = await (this._fetch ?? fetch)(this._url, {
210+
const response = await (this._fetch ?? fetch)(this._url, {
211211
method: "GET",
212212
headers,
213213
signal: this._abortController?.signal,
@@ -427,7 +427,7 @@ const response = await (this._fetch ?? fetch)(this._url, {
427427
signal: this._abortController?.signal,
428428
};
429429

430-
const response = await (this._fetch ?? fetch)(this._url, init);
430+
const response = await (this._fetch ?? fetch)(this._url, init);
431431

432432
// Handle session ID received during initialization
433433
const sessionId = response.headers.get("mcp-session-id");
@@ -533,7 +533,7 @@ const response = await (this._fetch ?? fetch)(this._url, init);
533533
signal: this._abortController?.signal,
534534
};
535535

536-
const response = await (this._fetch ?? fetch)(this._url, init);
536+
const response = await (this._fetch ?? fetch)(this._url, init);
537537

538538
// We specifically handle 405 as a valid response according to the spec,
539539
// meaning the server does not support explicit session termination

0 commit comments

Comments
 (0)