diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-03-02 07:24:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 07:24:29 -0500 |
commit | 33a85cf08ccf3713599a168ae1ed10d35ada2009 (patch) | |
tree | 72167d4a970ab6917e766e1d49a3d63b3f57cc45 /synapse | |
parent | Add Sytest jobs with the asyncio reactor enabled (#14101) (diff) | |
download | synapse-33a85cf08ccf3713599a168ae1ed10d35ada2009.tar.xz |
Fix conflicting URLs for dehydrated devices. (#15180)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/rest/client/devices.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/devices.py b/synapse/rest/client/devices.py index 486c6dbbc5..dab4a77f7e 100644 --- a/synapse/rest/client/devices.py +++ b/synapse/rest/client/devices.py @@ -255,7 +255,7 @@ class DehydratedDeviceServlet(RestServlet): """ - PATTERNS = client_patterns("/org.matrix.msc2697.v2/dehydrated_device", releases=()) + PATTERNS = client_patterns("/org.matrix.msc2697.v2/dehydrated_device$", releases=()) def __init__(self, hs: "HomeServer"): super().__init__() |