From da561ab792544a11a6ed416f30ac4528e2925c98 Mon Sep 17 00:00:00 2001 From: Niklas Wojtkowiak Date: Tue, 24 Feb 2026 11:19:41 -0500 Subject: [PATCH] fix(rooms): prevent removing admin room alias Only the server user can now remove the #admins alias, matching the existing check for setting the alias. This prevents users from accidentally breaking the admin room functionality. fixes #1408 --- changelog.d/1448.bugfix | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/1448.bugfix diff --git a/changelog.d/1448.bugfix b/changelog.d/1448.bugfix new file mode 100644 index 00000000..a24db17d --- /dev/null +++ b/changelog.d/1448.bugfix @@ -0,0 +1 @@ +Prevent removing the admin room alias (`#admins`) to avoid accidentally breaking admin room functionality. Contributed by @0xnim