summary refs log tree commit diff
path: root/synapse/handlers/profile.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2018-07-18 20:50:20 +0100
committerDavid Baker <dave@matrix.org>2018-07-18 20:50:20 +0100
commitdbd0821c43dc85c9ba4d808a348efb70ad2c57f1 (patch)
tree3e173c19876d29812945307f4d34d657637e8758 /synapse/handlers/profile.py
parentRemove deactivated users from profile search (diff)
downloadsynapse-dbd0821c43dc85c9ba4d808a348efb70ad2c57f1.tar.xz
Oops, didn't mean to commit that
Diffstat (limited to 'synapse/handlers/profile.py')
-rw-r--r--synapse/handlers/profile.py2
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,