Do not attempt to bundled aggregations for /members and /state. (#11623)
Both of those APIs return state events, which will not have bundled aggregations added anyway.
This commit is contained in:
parent
15bb1c8511
commit
f58b300d27
|
@ -0,0 +1 @@
|
|||
Fix a long-standing bug where responses included bundled aggregations when they should not, per [MSC2675](https://github.com/matrix-org/matrix-doc/pull/2675).
|
|
@ -246,9 +246,7 @@ class MessageHandler:
|
|||
room_state = room_state_events[membership_event_id]
|
||||
|
||||
now = self.clock.time_msec()
|
||||
events = await self._event_serializer.serialize_events(
|
||||
room_state.values(), now, bundle_aggregations=True
|
||||
)
|
||||
events = await self._event_serializer.serialize_events(room_state.values(), now)
|
||||
return events
|
||||
|
||||
async def get_joined_members(self, requester: Requester, room_id: str) -> dict:
|
||||
|
|
Loading…
Reference in New Issue