We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8df50da commit 74c6289Copy full SHA for 74c6289
utils/XhrNetworkInterceptor.js
@@ -88,7 +88,7 @@ const XHRInterceptor = {
88
if (this.responseType === 'blob') {
89
var responseText = await (new Response(this.response)).text();
90
cloneNetwork.responseBody = responseText;
91
- } else if (this.responseType === 'text') {
+ } else if (this.responseType === 'text' || this.responseType === '') {
92
cloneNetwork.responseBody = this.response;
93
}
94
0 commit comments