mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-15 14:32:30 +01:00
Return empty list rather than None when there are no emphemeral events for a room
This commit is contained in:
parent
2cd29dbdd9
commit
0b1cc7cc0b
1 changed files with 1 additions and 1 deletions
|
@ -370,7 +370,7 @@ class SyncHandler(BaseHandler):
|
|||
prev_batch=prev_batch_token,
|
||||
state=state_events_delta,
|
||||
limited=limited,
|
||||
ephemeral=typing_by_room.get(room_id, None)
|
||||
ephemeral=typing_by_room.get(room_id, [])
|
||||
)
|
||||
|
||||
logging.debug("Room sync: %r", room_sync)
|
||||
|
|
Loading…
Reference in a new issue