mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-07 14:08:38 +00:00
fix cookies not being set when follow redirect = false (#6679)
* fix follow redirect cookies not being set * Set default value of followredirects in axios-instance Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Jeroen Vinke <jeroen.vinke@iddinkgroup.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -647,7 +647,8 @@ const runSingleRequest = async function (
|
||||
|
||||
let axiosInstance = makeAxiosInstance({
|
||||
requestMaxRedirects: requestMaxRedirects,
|
||||
disableCookies: options.disableCookies
|
||||
disableCookies: options.disableCookies,
|
||||
followRedirects: followRedirects
|
||||
});
|
||||
|
||||
if (request.ntlmConfig) {
|
||||
|
||||
Reference in New Issue
Block a user