diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-07-06 16:47:17 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-07-06 16:47:17 +0100 |
commit | a7dcbfe430f31a6e9fc6b5920ddff39eb1b1e3b4 (patch) | |
tree | 170afe65560fad6e2a4a7b38baf731d6753b8664 /synapse/http | |
parent | Don't explode if we don't recognize one of the event_ids in the backfill request (diff) | |
download | synapse-a7dcbfe430f31a6e9fc6b5920ddff39eb1b1e3b4.tar.xz |
Don't 500 if a group is missing from the regex
Diffstat (limited to 'synapse/http')
-rw-r--r-- | synapse/http/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/server.py b/synapse/http/server.py index 807ff95c65..b60e905a62 100644 --- a/synapse/http/server.py +++ b/synapse/http/server.py @@ -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) |