Skip to content

Commit fc78535

Browse files
fix(android): pass network start time in microseconds (#1260)
* fix: network timestamp in android side * fix: PR comments Co-authored-by: Ahmed Elrefaey <[email protected]> --------- Co-authored-by: Ahmed Elrefaey <[email protected]>
1 parent 8cd7cff commit fc78535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/com/instabug/reactlibrary/RNInstabugAPMModule.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ private void networkLogAndroid(final double requestStartTime,
343343
if (method != null) {
344344
method.invoke(
345345
networkLogger,
346-
(long) requestStartTime,
346+
(long) requestStartTime * 1000,
347347
(long) requestDuration,
348348
requestHeaders,
349349
requestBody,

0 commit comments

Comments
 (0)