Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 4bdbebc

Browse files
authored
Remove the unstable event field for /send_join per MSC3083. (#12395)
This was missed when initially stabilising room version 8 and was left in as a compatibility shim. Most homeservers have upgraded to a version which expects the proper field name, and the failure mode is reasonable (a user on an older server may have to attempt joining the room twice with an obscure error message the first time).
1 parent ba15884 commit 4bdbebc

File tree

3 files changed

+1
-12
lines changed

3 files changed

+1
-12
lines changed

changelog.d/12395.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove an unstable identifier from [MSC3083](https://github.com/matrix-org/matrix-doc/pull/3083).

synapse/federation/federation_server.py

-2
Original file line numberDiff line numberDiff line change
@@ -687,8 +687,6 @@ async def on_send_join_request(
687687
time_now = self._clock.time_msec()
688688
event_json = event.get_pdu_json(time_now)
689689
resp = {
690-
# TODO Remove the unstable prefix when servers have updated.
691-
"org.matrix.msc3083.v2.event": event_json,
692690
"event": event_json,
693691
"state": [p.get_pdu_json(time_now) for p in state_events],
694692
"auth_chain": [p.get_pdu_json(time_now) for p in auth_chain_events],

synapse/federation/transport/client.py

-10
Original file line numberDiff line numberDiff line change
@@ -1380,16 +1380,6 @@ def __init__(self, room_version: RoomVersion, v1_api: bool):
13801380
prefix + "auth_chain.item",
13811381
use_float=True,
13821382
),
1383-
# TODO Remove the unstable prefix when servers have updated.
1384-
#
1385-
# By re-using the same event dictionary this will cause the parsing of
1386-
# org.matrix.msc3083.v2.event and event to stomp over each other.
1387-
# Generally this should be fine.
1388-
ijson.kvitems_coro(
1389-
_event_parser(self._response.event_dict),
1390-
prefix + "org.matrix.msc3083.v2.event",
1391-
use_float=True,
1392-
),
13931383
ijson.kvitems_coro(
13941384
_event_parser(self._response.event_dict),
13951385
prefix + "event",

0 commit comments

Comments
 (0)