diff options
author | David Baker <dave@matrix.org> | 2018-07-18 20:50:20 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2018-07-18 20:50:20 +0100 |
commit | dbd0821c43dc85c9ba4d808a348efb70ad2c57f1 (patch) | |
tree | 3e173c19876d29812945307f4d34d657637e8758 /synapse/handlers/profile.py | |
parent | Remove deactivated users from profile search (diff) | |
download | synapse-dbd0821c43dc85c9ba4d808a348efb70ad2c57f1.tar.xz |
Oops, didn't mean to commit that
Diffstat (limited to 'synapse/handlers/profile.py')
-rw-r--r-- | synapse/handlers/profile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/profile.py b/synapse/handlers/profile.py index 02240fd720..ec8197f92b 100644 --- a/synapse/handlers/profile.py +++ b/synapse/handlers/profile.py @@ -106,7 +106,7 @@ class ProfileHandler(BaseHandler): } if r["active"] else None) for r in batch_rows } - url = "http://%s/_matrix/identity/api/v1/replicate_profiles" % (host,) + url = "https://%s/_matrix/identity/api/v1/replicate_profiles" % (host,) body = { "batchnum": batchnum, "batch": batch, |