File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 7
7
- Add support for Expo Router navigation tracking ([ #1270 ] ( https://github.com/Instabug/Instabug-React-Native/pull/1270 ) ).
8
8
- Enhance the network interceptor to capture more client error messages ([ #1257 ] ( https://github.com/Instabug/Instabug-React-Native/pull/1257 ) ).
9
9
10
+ ### Fixed
11
+
12
+ - Fix APM network logging on iOS when the response body is missing or empty. ([ #1273 ] ( https://github.com/Instabug/Instabug-React-Native/pull/1273 ) ).
13
+
10
14
## [ 13.3.0] ( https://github.com/Instabug/Instabug-React-Native/compare/v13.2.0...v13.3.0 ) (August 4, 2024)
11
15
12
16
### Added
Original file line number Diff line number Diff line change @@ -151,6 +151,10 @@ export default {
151
151
152
152
// @ts -ignore
153
153
const _response = this . _response ;
154
+ cloneNetwork . requestBody =
155
+ typeof _response === 'string' ? _response : JSON . stringify ( _response ) ;
156
+ cloneNetwork . responseBody = '' ;
157
+
154
158
// Detect a more descriptive error message.
155
159
if ( typeof _response === 'string' && _response . length > 0 ) {
156
160
cloneNetwork . errorDomain = _response ;
You can’t perform that action at this time.
0 commit comments