mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-06 01:37:56 -05:00
Don't strip of False values from events when serializing
This commit is contained in:
parent
72e80dbe0e
commit
69ddec6589
@ -22,7 +22,7 @@ def serialize_event(hs, e):
|
||||
if not isinstance(e, SynapseEvent):
|
||||
return e
|
||||
|
||||
d = {k: v for k, v in e.get_dict().items() if v is not None or v is not False}
|
||||
d = {k: v for k, v in e.get_dict().items() if v is not None}
|
||||
if "age_ts" in d:
|
||||
d["age"] = int(hs.get_clock().time_msec()) - d["age_ts"]
|
||||
del d["age_ts"]
|
||||
|
Loading…
Reference in New Issue
Block a user