summary refs log tree commit diff
diff options
context:
space:
mode:
authorJacek KuĊ›nierz <kusnierz@protonmail.com>2022-07-13 20:43:17 +0200
committerGitHub <noreply@github.com>2022-07-13 19:43:17 +0100
commitcc1071598ad45e682a14dc8b3c1fe553e8158593 (patch)
treeeabf8016579f8b428c1824a10a712d3209c12658
parentAdd support for room version 10 (#13220) (diff)
downloadsynapse-cc1071598ad45e682a14dc8b3c1fe553e8158593.tar.xz
Call the v2 identity service `/3pid/unbind` endpoint, rather than v1. (#13240)
* Drop support for v1 unbind

Signed-off-by: Jacek Kusnierz <jacek.kusnierz@tum.de>

* Add changelog

Signed-off-by: Jacek Kusnierz <jacek.kusnierz@tum.de>

* Update changelog.d/13240.misc
-rw-r--r--changelog.d/13240.misc1
-rw-r--r--synapse/handlers/identity.py4
2 files changed, 3 insertions, 2 deletions
diff --git a/changelog.d/13240.misc b/changelog.d/13240.misc
new file mode 100644
index 0000000000..0567e47d64
--- /dev/null
+++ b/changelog.d/13240.misc
@@ -0,0 +1 @@
+Call the v2 identity service `/3pid/unbind` endpoint, rather than v1.
\ No newline at end of file
diff --git a/synapse/handlers/identity.py b/synapse/handlers/identity.py
index 164d891e90..9571d461c8 100644
--- a/synapse/handlers/identity.py
+++ b/synapse/handlers/identity.py
@@ -281,8 +281,8 @@ class IdentityHandler:
                 "id_server must be a valid hostname with optional port and path components",
             )
 
-        url = "https://%s/_matrix/identity/api/v1/3pid/unbind" % (id_server,)
-        url_bytes = b"/_matrix/identity/api/v1/3pid/unbind"
+        url = "https://%s/_matrix/identity/v2/3pid/unbind" % (id_server,)
+        url_bytes = b"/_matrix/identity/v2/3pid/unbind"
 
         content = {
             "mxid": mxid,