diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-10-05 21:40:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 21:40:51 +0100 |
commit | 785437dc0ddfb23012748895e1f8665338e4f3df (patch) | |
tree | fc018fd99457ee5535077c8225ac01d1018d0f13 /synapse/config | |
parent | Ensure that event.redacts is the proper type before handling it (#8457) (diff) | |
download | synapse-785437dc0ddfb23012748895e1f8665338e4f3df.tar.xz |
Update default room version to 6 (#8461)
Per https://github.com/matrix-org/matrix-doc/pull/2788
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/server.py b/synapse/config/server.py index ef6d70e3f8..85aa49c02d 100644 --- a/synapse/config/server.py +++ b/synapse/config/server.py @@ -39,7 +39,7 @@ logger = logging.Logger(__name__) # in the list. DEFAULT_BIND_ADDRESSES = ["::", "0.0.0.0"] -DEFAULT_ROOM_VERSION = "5" +DEFAULT_ROOM_VERSION = "6" ROOM_COMPLEXITY_TOO_GREAT = ( "Your homeserver is unable to join rooms this large or complex. " |