mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 18:04:07 +01:00
Integer timestamps
This commit is contained in:
parent
4019b48aaa
commit
c2d08ca62a
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class ReceiptsHandler(BaseHandler):
|
||||||
"user_id": user_id,
|
"user_id": user_id,
|
||||||
"event_ids": [event_id],
|
"event_ids": [event_id],
|
||||||
"data": {
|
"data": {
|
||||||
"ts": self.clock.time_msec()
|
"ts": int(self.clock.time_msec()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue