diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-01-07 19:27:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 19:27:58 -0500 |
commit | 8e57584a5859a9002759963eb546d523d2498a01 (patch) | |
tree | 570e918d82ab32c30b149bdcb3dbd6541b578b01 /changelog.d | |
parent | Optionally use an on-disk sqlite db in tests (#11702) (diff) | |
download | synapse-8e57584a5859a9002759963eb546d523d2498a01.tar.xz |
Support spaces with > 50 rooms in the /hierarchy endpoint. (#11695)
By returning all of the m.space.child state of the space, not just the first 50. The number of rooms returned is still capped at 50. For the federation API this implies that the requesting server will need to individually query for any other rooms it is not joined to.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/11695.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/11695.bugfix b/changelog.d/11695.bugfix new file mode 100644 index 0000000000..7799aefb82 --- /dev/null +++ b/changelog.d/11695.bugfix @@ -0,0 +1 @@ +Fix a bug where the only the first 50 rooms from a space were returned from the `/hierarchy` API. This has existed since the introduction of the API in Synapse v1.41.0. |