Bump default room version to V9; per matrix spec recommendation

This commit is contained in:
Nyaaori 2022-10-15 10:42:14 +02:00
parent aca6218c0a
commit cc3e1f58cc
No known key found for this signature in database
GPG key ID: E7819C3ED4D1F82E
3 changed files with 5 additions and 5 deletions

View file

@ -172,8 +172,8 @@ impl Service {
.supported_room_versions()
.contains(&s.config.default_room_version)
{
error!("Room version in config isn't supported, falling back to Version 6");
s.config.default_room_version = RoomVersionId::V6;
error!("Room version in config isn't supported, falling back to default version");
s.config.default_room_version = crate::config::default_default_room_version();
};
Ok(s)