diff options
author | Michael Telatynski <7t3chguy@gmail.com> | 2021-05-18 15:17:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-18 15:17:37 +0100 |
commit | 4691adc8f8f7c6d3793a3d5788621ef1ca09ca10 (patch) | |
tree | 297e6757ce0034484315b443df08832f755c9635 | |
parent | 1d89c4a3cd707773cf2c13c2579da856226f124e (diff) |
Update MSC2946 implementation for stable spaces (#1859)
Now that MSC1772 passed FCP its identifiers have stabilised
This outright drops support for experimental spaces but that's what you get for being on the bleeding edge
-rw-r--r-- | setup/mscs/msc2946/msc2946.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setup/mscs/msc2946/msc2946.go b/setup/mscs/msc2946/msc2946.go index 6fdfeed6..08a54f75 100644 --- a/setup/mscs/msc2946/msc2946.go +++ b/setup/mscs/msc2946/msc2946.go @@ -39,9 +39,9 @@ import ( ) const ( - ConstCreateEventContentKey = "org.matrix.msc1772.type" - ConstSpaceChildEventType = "org.matrix.msc1772.space.child" - ConstSpaceParentEventType = "org.matrix.msc1772.space.parent" + ConstCreateEventContentKey = "type" + ConstSpaceChildEventType = "m.space.child" + ConstSpaceParentEventType = "m.space.parent" ) // Defaults sets the request defaults |