Merge pull request #197 from matrix-org/mjark/missing_regex_group

Don't 500 if a group is missing from the regex match
This commit is contained in:
Erik Johnston 2015-07-07 09:37:38 +01:00
commit dfc74c30c9

View file

@ -207,7 +207,7 @@ class JsonResource(HttpServer, resource.Resource):
incoming_requests_counter.inc(request.method, servlet_classname)
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)