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.
2 parents 8df50da + 436511b commit 2b40e93Copy full SHA for 2b40e93
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## master
2
+
3
+* Fixes an issue that caused XHR Response not to be logged.
4
5
## v9.1.1 (2020-04-06)
6
7
* Fixes an issue with the version name while uploading the sourcemap on Android.
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