summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2020-09-29 12:36:44 +0100
committerGitHub <noreply@github.com>2020-09-29 12:36:44 +0100
commit1c6b8752b891c1a25524d8dfaa8efb7176c0dbec (patch)
tree38b6720705ee6fdd4de6b436b87b62ef0e019444 /changelog.d
parentAdd metrics to track success/otherwise of replication requests (#8406) (diff)
downloadsynapse-1c6b8752b891c1a25524d8dfaa8efb7176c0dbec.tar.xz
Only assert valid next_link params when provided (#8417)
Broken in https://github.com/matrix-org/synapse/pull/8275 and has yet to be put in a release. Fixes https://github.com/matrix-org/synapse/issues/8418.

`next_link` is an optional parameter. However, we were checking whether the `next_link` param was valid, even if it wasn't provided. In that case, `next_link` was `None`, which would clearly not be a valid URL.

This would prevent password reset and other operations if `next_link` was not provided, and the `next_link_domain_whitelist` config option was set.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/8417.feature1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8417.feature b/changelog.d/8417.feature
new file mode 100644
index 0000000000..17549c3df3
--- /dev/null
+++ b/changelog.d/8417.feature
@@ -0,0 +1 @@
+Add a config option to specify a whitelist of domains that a user can be redirected to after validating their email or phone number.
\ No newline at end of file