Skip to content

Commit e540bbc

Browse files
committed
impl
1 parent 164731a commit e540bbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jvmMain/kotlin/spp/protocol/marshall/ProtocolMarshaller.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ object ProtocolMarshaller {
327327
LogOrderType.valueOf(value.getString("orderType")),
328328
value.let {
329329
if (it.getValue("timestamp") is Number) {
330-
Instant.fromEpochMilliseconds(value.getLong("occurredAt"))
330+
Instant.fromEpochMilliseconds(value.getLong("timestamp"))
331331
} else {
332332
Instant.fromEpochSeconds(
333333
value.getJsonObject("timestamp").getLong("epochSeconds"),

0 commit comments

Comments
 (0)