diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-04 13:00:52 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-04 13:00:52 +0100 |
commit | 2e35a733cc98102045b8cd2127604544489d5787 (patch) | |
tree | f04ffdf26c6d6f5b7fa97d859996ba4aa3d675f2 /synapse/handlers | |
parent | Add comment (diff) | |
parent | Don't try & check the username if we don't have one (which we won't if it's b... (diff) | |
download | synapse-2e35a733cc98102045b8cd2127604544489d5787.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into erikj/acl_perf
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/identity.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/identity.py b/synapse/handlers/identity.py index 6200e10775..c1095708a0 100644 --- a/synapse/handlers/identity.py +++ b/synapse/handlers/identity.py @@ -44,7 +44,7 @@ class IdentityHandler(BaseHandler): http_client = SimpleHttpClient(self.hs) # XXX: make this configurable! # trustedIdServers = ['matrix.org', 'localhost:8090'] - trustedIdServers = ['matrix.org'] + trustedIdServers = ['matrix.org', 'vector.im'] if 'id_server' in creds: id_server = creds['id_server'] |