diff --git a/src/core/proxy.js b/src/core/proxy.js index 7a67584..c2437c6 100644 --- a/src/core/proxy.js +++ b/src/core/proxy.js @@ -38,6 +38,9 @@ const requestHandler = async (request, proxy, overrides = {}) => { body: response.body }); } catch (error) { + //If the request is being handled by other handlers then do not abort + // Related to Issues #89 + if (request.isInterceptResolutionHandled()) return; await request.abort(); } };