From 2794fc8e29a69e596478bc06a99d092f63f8b469 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Tue, 8 Jun 2021 17:10:41 +0100 Subject: [PATCH 1/2] Explicitly call replacement_room a room ID Fixes https://github.com/matrix-org/matrix-doc/issues/3232 --- data/event-schemas/schema/m.room.tombstone.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/event-schemas/schema/m.room.tombstone.yaml b/data/event-schemas/schema/m.room.tombstone.yaml index 0fd8ba45..1c590e1f 100644 --- a/data/event-schemas/schema/m.room.tombstone.yaml +++ b/data/event-schemas/schema/m.room.tombstone.yaml @@ -10,7 +10,7 @@ properties: description: A server-defined message. replacement_room: type: string - description: The new room the client should be visiting. + description: The room ID of the new room the client should be visiting. required: - replacement_room - body From 7fac138d9a46b7f186d630307f44de1ea9146d28 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Wed, 9 Jun 2021 11:27:42 +0100 Subject: [PATCH 2/2] Create 3233.clarification --- changelogs/client_server/newsfragments/3233.clarification | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelogs/client_server/newsfragments/3233.clarification diff --git a/changelogs/client_server/newsfragments/3233.clarification b/changelogs/client_server/newsfragments/3233.clarification new file mode 100644 index 00000000..72a58f1b --- /dev/null +++ b/changelogs/client_server/newsfragments/3233.clarification @@ -0,0 +1 @@ +Explicitly state that `replacment_room` is a room ID in `m.room.tombstone` events.