summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2020-11-19 10:05:33 +0000
committerGitHub <noreply@github.com>2020-11-19 10:05:33 +0000
commit950bb0305fc3c114f456eb4e2a806014150545d2 (patch)
tree7e76c5b8cfa00e282be2e673c0acf888f54904bc /changelog.d
parentImprove appservice handler to send only the most recent read receipts when no... (diff)
downloadsynapse-950bb0305fc3c114f456eb4e2a806014150545d2.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')
-rw-r--r--changelog.d/8776.bugfix1
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.