summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erikj@element.io>2024-06-19 17:18:45 +0100
committerGitHub <noreply@github.com>2024-06-19 16:18:45 +0000
commit3239b7459c88d02be33975addcddfc39126575e7 (patch)
tree4b8ae40976b66a6ec22e46ec19925ac268fe5313 /synapse
parentregister-new-matrix-user: add a flag to ignore already existing users (#17304) (diff)
downloadsynapse-3239b7459c88d02be33975addcddfc39126575e7.tar.xz
Register sliding sync under a different path (#17331)
As the API is slightly incompatible.
Diffstat (limited to 'synapse')
-rw-r--r--synapse/rest/client/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/sync.py b/synapse/rest/client/sync.py

index 1b0ac20d94..b5ab0d8534 100644 --- a/synapse/rest/client/sync.py +++ b/synapse/rest/client/sync.py
@@ -864,7 +864,7 @@ class SlidingSyncRestServlet(RestServlet): """ PATTERNS = client_patterns( - "/org.matrix.msc3575/sync$", releases=[], v1=False, unstable=True + "/org.matrix.simplified_msc3575/sync$", releases=[], v1=False, unstable=True ) def __init__(self, hs: "HomeServer"):