From 1d7846b0f91cdd92ef031aa90b22b38b6b18ed76 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Fri, 17 Apr 2026 18:10:28 +0200 Subject: [PATCH] chore: Add #2357 in `changelogs/. --- .../client_server/newsfragments/2357.clarification | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 changelogs/client_server/newsfragments/2357.clarification diff --git a/changelogs/client_server/newsfragments/2357.clarification b/changelogs/client_server/newsfragments/2357.clarification new file mode 100644 index 00000000..1df21e40 --- /dev/null +++ b/changelogs/client_server/newsfragments/2357.clarification @@ -0,0 +1,11 @@ +Fixes a typo in `/rooms/{roomId}/relations/{eventId}`. + +The specification says about the `from` request query parameter: + +> The pagination token to start returning results from. If not supplied, results start at the most recent topological event known to the server. +> +> Can be a `next_batch` or `prev_batch` token from a previous call, or a returned `start` token from `/messages`, or a `next_batch` token from `/sync`. + +The last part is wrong. It should be: + +> … or a `prev_batch` token from `/sync`.