Add room version 10 to experimental versions
This commit is contained in:
parent
c2a5315e9f
commit
2b7c19835b
1 changed files with 6 additions and 1 deletions
|
@ -129,7 +129,12 @@ impl Service {
|
|||
RoomVersionId::V9,
|
||||
];
|
||||
// Experimental, partially supported room versions
|
||||
let unstable_room_versions = vec![RoomVersionId::V3, RoomVersionId::V4, RoomVersionId::V5];
|
||||
let unstable_room_versions = vec![
|
||||
RoomVersionId::V3,
|
||||
RoomVersionId::V4,
|
||||
RoomVersionId::V5,
|
||||
RoomVersionId::V10,
|
||||
];
|
||||
|
||||
let mut s = Self {
|
||||
db,
|
||||
|
|
Loading…
Reference in a new issue