about summary refs log tree commit diff
path: root/MatrixUtils.Web/Classes/Constants/RoomConstants.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixUtils.Web/Classes/Constants/RoomConstants.cs')
-rw-r--r--MatrixUtils.Web/Classes/Constants/RoomConstants.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/MatrixUtils.Web/Classes/Constants/RoomConstants.cs b/MatrixUtils.Web/Classes/Constants/RoomConstants.cs

index 5df0d01..dc81d04 100644 --- a/MatrixUtils.Web/Classes/Constants/RoomConstants.cs +++ b/MatrixUtils.Web/Classes/Constants/RoomConstants.cs
@@ -1,6 +1,7 @@ namespace MatrixUtils.Web.Classes.Constants; public class RoomConstants { - public static readonly string[] DangerousRoomVersions = { "1", "8" }; - public const string RecommendedRoomVersion = "10"; + public static readonly string[] DangerousRoomVersions = ["1", "8"]; + public static readonly string[] UnsupportedRoomVersions = ["1", "2", "3", "4", "5", "6"]; + public const string RecommendedRoomVersion = "11"; }