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 ff8b588 + a7b55c0 commit 63335b1Copy full SHA for 63335b1
CHANGELOG.md
@@ -1,5 +1,6 @@
1
## master
2
3
+* Fixes a crash caused by the network logger when the object passed is too large
4
* Adds source map upload script support for environment variables use inside Info.plist
5
6
## v9.1.9 (2020-10-01)
modules/NetworkLogger.js
@@ -29,10 +29,14 @@ export default {
29
network
30
);
31
} else {
32
- if (Platform.OS === 'android') {
33
- Instabug.networkLog(JSON.stringify(network));
34
- } else {
35
- Instabug.networkLog(network);
+ try {
+ if (Platform.OS === 'android') {
+ Instabug.networkLog(JSON.stringify(network));
+ } else {
36
+ Instabug.networkLog(network);
37
+ }
38
+ } catch (e) {
39
+ console.error(e);
40
}
41
42
0 commit comments