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 b1ea77b commit d58884aCopy full SHA for d58884a
āindex.jsā
@@ -52,7 +52,9 @@ var jsonObject = {
52
// Modify the reponse object;
53
jsonObject.responseCode = response.status;
54
jsonObject.responseBody = response._bodyText;
55
- Instabug.networkLog(JSON.stringify(jsonObject));
+ if (Platform.OS === 'android') {
56
+ Instabug.networkLog(JSON.stringify(jsonObject));
57
+ }
58
return response;
59
}
60
});
0 commit comments