diff options
author | Till <2353100+S7evinK@users.noreply.github.com> | 2024-03-28 20:40:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-28 20:40:45 +0100 |
commit | b732eede2738dcf88727b403fa1e9494466bf7a8 (patch) | |
tree | 752d15a2f0ced45276a59251d5b7d207830da33f /go.mod | |
parent | ad0a7d09e89fe18c9e2b08f23f5817a5231c6074 (diff) |
Fix spaces over federation (#3347)
Fixes #2504
A few issues with the previous iteration:
- We never returned `inaccessible_children`, which (if I read the code
correctly), made Synapse raise an error and thus not returning the
requested rooms
- For restricted rooms, we didn't return the list of allowed rooms
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ require ( github.com/matrix-org/dugong v0.0.0-20210921133753-66e6b1c67e2e github.com/matrix-org/go-sqlite3-js v0.0.0-20220419092513-28aa791a1c91 github.com/matrix-org/gomatrix v0.0.0-20220926102614-ceba4d9f7530 - github.com/matrix-org/gomatrixserverlib v0.0.0-20240109180417-3495e573f2b7 + github.com/matrix-org/gomatrixserverlib v0.0.0-20240326183347-e8077abf519a github.com/matrix-org/pinecone v0.11.1-0.20230810010612-ea4c33717fd7 github.com/matrix-org/util v0.0.0-20221111132719-399730281e66 github.com/mattn/go-sqlite3 v1.14.17 |