diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-08-31 14:54:58 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-08-31 14:54:58 +0100 |
commit | 2b7918bd6fa982ee61a1c3903973141edaa80779 (patch) | |
tree | 1bd54abd19ed1e8da0ac7c9d629144bb70237e33 /synapse/http | |
parent | change the world: make the default matrix API URL prefix /_matrix rather than... (diff) | |
download | synapse-2b7918bd6fa982ee61a1c3903973141edaa80779.tar.xz |
missed a s#/matrix#/_matrix/g
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 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 ) |