fix: prevent response truncation in recursive collection runner (#6862)

This commit is contained in:
gopu-bruno
2026-01-21 11:32:33 +05:30
committed by GitHub
parent 725dfeacac
commit 967b073ded

View File

@@ -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');