summary refs log tree commit diff
path: root/synapse/push
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-06-11 11:31:12 +0100
committerErik Johnston <erik@matrix.org>2019-06-11 11:34:33 +0100
commit10383e6e6fefe29b007d11220841c17ad9cfc3e1 (patch)
tree35e0a0f45438db7f0c1994e3b4981158042ff959 /synapse/push
parent1.0.0rc3 (diff)
downloadsynapse-10383e6e6fefe29b007d11220841c17ad9cfc3e1.tar.xz
Change password reset links to /_matrix.
Diffstat (limited to 'synapse/push')
-rw-r--r--synapse/push/mailer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/mailer.py b/synapse/push/mailer.py
index 4bc9eb7313..099f9545ab 100644
--- a/synapse/push/mailer.py
+++ b/synapse/push/mailer.py
@@ -117,7 +117,7 @@ class Mailer(object):
 
         link = (
             self.hs.config.public_baseurl +
-            "_synapse/password_reset/email/submit_token"
+            "_matrix/client/unstable/password_reset/email/submit_token"
             "?token=%s&client_secret=%s&sid=%s" %
             (token, client_secret, sid)
         )