diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-10-06 11:41:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-06 11:41:57 -0400 |
commit | 06bbf1029cf2558213646d3b692621bed5178066 (patch) | |
tree | 481a2ddce7df9aa124661c9a582bc6efec1d3603 /synapse/rest | |
parent | Return ThumbnailInfo in more places (#16438) (diff) | |
download | synapse-06bbf1029cf2558213646d3b692621bed5178066.tar.xz |
Convert simple_select_list_paginate_txn to return tuples. (#16433)
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/admin/federation.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/synapse/rest/admin/federation.py b/synapse/rest/admin/federation.py index e0ee55bd0e..8a617af599 100644 --- a/synapse/rest/admin/federation.py +++ b/synapse/rest/admin/federation.py @@ -198,7 +198,13 @@ class DestinationMembershipRestServlet(RestServlet): rooms, total = await self._store.get_destination_rooms_paginate( destination, start, limit, direction ) - response = {"rooms": rooms, "total": total} + response = { + "rooms": [ + {"room_id": room_id, "stream_ordering": stream_ordering} + for room_id, stream_ordering in rooms + ], + "total": total, + } if (start + limit) < total: response["next_token"] = str(start + len(rooms)) |