File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -155,14 +155,17 @@ export default isFetchSupported && (async (config) => {
155
155
withCredentials = withCredentials ? 'include' : 'omit' ;
156
156
}
157
157
158
+ // Cloudflare Workers throws when credentials are defined
159
+ // see https://github.com/cloudflare/workerd/issues/902
160
+ const isCredentialsSupported = "credentials" in Request . prototype ;
158
161
request = new Request ( url , {
159
162
...fetchOptions ,
160
163
signal : composedSignal ,
161
164
method : method . toUpperCase ( ) ,
162
165
headers : headers . normalize ( ) . toJSON ( ) ,
163
166
body : data ,
164
167
duplex : "half" ,
165
- credentials : withCredentials
168
+ credentials : isCredentialsSupported ? withCredentials : undefined
166
169
} ) ;
167
170
168
171
let response = await fetch ( request ) ;
You can’t perform that action at this time.
0 commit comments