diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-01-13 07:05:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-13 07:05:16 -0500 |
commit | 98a64b7f7f256b7afd4a1d735cb32d099e44831a (patch) | |
tree | d58c5d8d423a93541d63ace5eb0d0e1be32192d5 /changelog.d | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-98a64b7f7f256b7afd4a1d735cb32d099e44831a.tar.xz |
Add basic domain validation for `DomainSpecificString.is_valid`. (#9071)
This checks that the domain given to `DomainSpecificString.is_valid` (e.g. `UserID`, `RoomAlias`, etc.) is of a valid form. Previously some validation was done on the localpart (e.g. the sigil), but not the domain portion.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/9071.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/9071.bugfix b/changelog.d/9071.bugfix new file mode 100644 index 0000000000..0201271f84 --- /dev/null +++ b/changelog.d/9071.bugfix @@ -0,0 +1 @@ +Fix "Failed to send request" errors when a client provides an invalid room alias. |