if using 1623849812.985 works correctly, when using 1623849812.985594 with higher precision in millis, there's an issue when (seconds * 1000) + millis.
I don't recall RN SDK sending more than millis precision, so I'm not sure if we should fix the Android SDK or the RN SDK.
A simple workaround would be to cut off after 3 digits or make the right calculation
if using
1623849812.985works correctly, when using1623849812.985594with higher precision in millis, there's an issue when(seconds * 1000) + millis.I don't recall RN SDK sending more than millis precision, so I'm not sure if we should fix the Android SDK or the RN SDK.
A simple workaround would be to cut off after 3 digits or make the right calculation