mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-29 15:44:13 +00:00
fix: prevent response truncation in recursive collection runner (#6862)
This commit is contained in:
@@ -1477,7 +1477,7 @@ const registerNetworkIpc = (mainWindow) => {
|
||||
}
|
||||
|
||||
if (error?.response) {
|
||||
error.response.data = await promisifyStream(error.response.data, currentAbortController, true);
|
||||
error.response.data = await promisifyStream(error.response.data, currentAbortController, false);
|
||||
const { data, dataBuffer } = parseDataFromResponse(error.response);
|
||||
error.response.responseTime = error.response.headers.get('request-duration');
|
||||
error.response.headers.delete('request-duration');
|
||||
|
||||
Reference in New Issue
Block a user