@@ -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