summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2014-08-31 14:54:58 +0100
committerMatthew Hodgson <matthew@matrix.org>2014-08-31 14:54:58 +0100
commit2b7918bd6fa982ee61a1c3903973141edaa80779 (patch)
tree1bd54abd19ed1e8da0ac7c9d629144bb70237e33
parentchange the world: make the default matrix API URL prefix /_matrix rather than... (diff)
downloadsynapse-2b7918bd6fa982ee61a1c3903973141edaa80779.tar.xz
missed a s#/matrix#/_matrix/g
-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 66f966fcaa..243b71744d 100644 --- a/synapse/http/server.py +++ b/synapse/http/server.py
@@ -325,7 +325,7 @@ class ContentRepoResource(resource.Resource): # FIXME (erikj): These should use constants. file_name = os.path.basename(fname) - url = "http://%s/matrix/content/%s" % ( + url = "http://%s/_matrix/content/%s" % ( self.hs.domain_with_port, file_name )