@dynatrace/react-native-plugin 2.337.2 → 2.337.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -1988,6 +1988,9 @@ If you are struggling with a problem, submit a support ticket to Dynatrace (supp
|
|
|
1988
1988
|
<br/><br/>
|
|
1989
1989
|
## Changelog
|
|
1990
1990
|
|
|
1991
|
+
2.337.3
|
|
1992
|
+
* Fixed issue causing fractional timestamps
|
|
1993
|
+
|
|
1991
1994
|
2.337.2
|
|
1992
1995
|
* Updated Android Agent (8.337.3.1013)
|
|
1993
1996
|
* Fixed crash in `Dynatrace.getUserPrivacyOptions()` on Android
|
|
@@ -18,6 +18,6 @@ exports.defaultTimestampProvider = {
|
|
|
18
18
|
baseMonotonicMs = currentMonotonicMs;
|
|
19
19
|
return baseRealtimeMs;
|
|
20
20
|
}
|
|
21
|
-
return baseRealtimeMs + (currentMonotonicMs - baseMonotonicMs);
|
|
21
|
+
return Math.trunc(baseRealtimeMs + (currentMonotonicMs - baseMonotonicMs));
|
|
22
22
|
},
|
|
23
23
|
};
|
package/package.json
CHANGED