summary refs log tree commit diff
path: root/synapse/http/server.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-07-06 16:47:17 +0100
committerMark Haines <mark.haines@matrix.org>2015-07-06 16:47:17 +0100
commita7dcbfe430f31a6e9fc6b5920ddff39eb1b1e3b4 (patch)
tree170afe65560fad6e2a4a7b38baf731d6753b8664 /synapse/http/server.py
parentDon't explode if we don't recognize one of the event_ids in the backfill request (diff)
downloadsynapse-a7dcbfe430f31a6e9fc6b5920ddff39eb1b1e3b4.tar.xz
Don't 500 if a group is missing from the regex
Diffstat (limited to 'synapse/http/server.py')
-rw-r--r--synapse/http/server.py2
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)