about summary refs log tree commit diff
path: root/MatrixUtils.Web/Classes/Constants
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-02-08 21:08:22 +0100
committerRory& <root@rory.gay>2025-02-08 21:08:22 +0100
commite8196ca2e7532cccae2fdecce3dff14294f66750 (patch)
tree8f0f051c42b59ae2060d48ae759236f724a81994 /MatrixUtils.Web/Classes/Constants
parentUpdate ArcaneLibs to fix modal windows (diff)
downloadMatrixUtils-e8196ca2e7532cccae2fdecce3dff14294f66750.tar.xz
Various changes
Diffstat (limited to 'MatrixUtils.Web/Classes/Constants')
-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"; }