mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-01-04 12:01:04 -05:00
Merge branch 'mjark/missing_regex_group' into markjh/client-end-to-end-key-management
This commit is contained in:
commit
28ef344077
@ -207,7 +207,7 @@ class JsonResource(HttpServer, resource.Resource):
|
|||||||
incoming_requests_counter.inc(request.method, servlet_classname)
|
incoming_requests_counter.inc(request.method, servlet_classname)
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
urllib.unquote(u).decode("UTF-8") for u in m.groups()
|
urllib.unquote(u).decode("UTF-8") if u else u for u in m.groups()
|
||||||
]
|
]
|
||||||
|
|
||||||
callback_return = yield callback(request, *args)
|
callback_return = yield callback(request, *args)
|
||||||
|
Loading…
Reference in New Issue
Block a user