File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
bruno-electron/src/ipc/network Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ const runSingleRequest = async function (
255
255
256
256
let axiosInstance = makeAxiosInstance ( ) ;
257
257
if ( request . ntlmConfig ) {
258
- axiosInstance = NtlmClient ( request . ntlmConfig , axiosInstance )
258
+ axiosInstance = NtlmClient ( request . ntlmConfig , axiosInstance . defaults )
259
259
delete request . ntlmConfig ;
260
260
}
261
261
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ const configureRequest = async (
278
278
let axiosInstance = makeAxiosInstance ( ) ;
279
279
280
280
if ( request . ntlmConfig ) {
281
- axiosInstance = NtlmClient ( request . ntlmConfig , axiosInstance )
281
+ axiosInstance = NtlmClient ( request . ntlmConfig , axiosInstance . defaults )
282
282
delete request . ntlmConfig ;
283
283
}
284
284
You can’t perform that action at this time.
0 commit comments