From 0c39b4b2abfb358e96a4b4ac05630b7c6989ac26 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Thu, 27 Nov 2025 14:39:14 +0000 Subject: [PATCH] Add note about matching against state_key --- proposals/4186-simplified-sliding-sync.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/4186-simplified-sliding-sync.md b/proposals/4186-simplified-sliding-sync.md index 68f1e7c62..3b3781e58 100644 --- a/proposals/4186-simplified-sliding-sync.md +++ b/proposals/4186-simplified-sliding-sync.md @@ -278,7 +278,7 @@ Describes the set of state that the server should return for the room. | Name | Type | Required | Comment | | - | - | - | - | | `type` | `string` | No | The event type to match. If omitted then matches all types. | -| `state_key` | `string` | No | The event state key to match. If omitted then matches all state keys. | +| `state_key` | `string` | No | The event state key to match. If omitted then matches all state keys.

Note: it is possible to match a specific state key, for all event types, by specifying `state_key` but leaving `type` unset. |