Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 3e6c091

Browse files
committed
Fix tags paths.
1 parent 7ab3351 commit 3e6c091

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

synapse/rest/client/tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class TagListServlet(RestServlet):
3434
GET /user/{user_id}/rooms/{room_id}/tags HTTP/1.1
3535
"""
3636

37-
PATTERNS = client_patterns("/user/(?P<user_id>[^/]*)/rooms/(?P<room_id>[^/]*)/tags")
37+
PATTERNS = client_patterns("/user/(?P<user_id>[^/]*)/rooms/(?P<room_id>[^/]*)/tags$")
3838

3939
def __init__(self, hs: "HomeServer"):
4040
super().__init__()

0 commit comments

Comments
 (0)