diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-11-19 10:05:33 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2020-12-09 10:38:39 +0000 |
commit | 3ce2f303f15f6ac3dc352298972dc6e04d9b7a8b (patch) | |
tree | f016c2e069ca0856a55d0309676e296285148d6a /changelog.d/8776.bugfix | |
parent | Update changelog (diff) | |
download | synapse-3ce2f303f15f6ac3dc352298972dc6e04d9b7a8b.tar.xz |
Consistently use room_id from federation request body (#8776)
* Consistently use room_id from federation request body Some federation APIs have a redundant `room_id` path param (see https://github.com/matrix-org/matrix-doc/issues/2330). We should make sure we consistently use either the path param or the body param, and the body param is easier. * Kill off some references to "context" Once upon a time, "rooms" were known as "contexts". I think this kills of the last references to "contexts".
Diffstat (limited to 'changelog.d/8776.bugfix')
-rw-r--r-- | changelog.d/8776.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8776.bugfix b/changelog.d/8776.bugfix new file mode 100644 index 0000000000..dd7ebbeb86 --- /dev/null +++ b/changelog.d/8776.bugfix @@ -0,0 +1 @@ +Fix a bug in some federation APIs which could lead to unexpected behaviour if different parameters were set in the URI and the request body. |