summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorSean Quah <8349537+squahtx@users.noreply.github.com>2022-09-08 15:55:03 +0100
committerGitHub <noreply@github.com>2022-09-08 15:55:03 +0100
commit89e8b98b6522dc9fafd5c32efe7a84dc9a31246a (patch)
treec23b50be6a64281e78c2adbcdc8cf178474f18e3 /changelog.d
parentFix error in `is_mine_id` when encountering a malformed ID (#13746) (diff)
downloadsynapse-89e8b98b6522dc9fafd5c32efe7a84dc9a31246a.tar.xz
Avoid raising errors due to malformed IDs in `get_current_hosts_in_room` (#13748)
Handle malformed user IDs with no colons in `get_current_hosts_in_room`.
It's not currently possible for a malformed user ID to join a room, so
this error would never be hit.

Signed-off-by: Sean Quah <seanq@matrix.org>
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/13748.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13748.misc b/changelog.d/13748.misc
new file mode 100644
index 0000000000..2f419bb659
--- /dev/null
+++ b/changelog.d/13748.misc
@@ -0,0 +1 @@
+Avoid raising an error due to malformed user IDs in `get_current_hosts_in_room`. Malformed user IDs cannot currently join a room, so this error would not be hit.