mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-22 10:24:02 +01:00
Change to https for ID server communication
This commit is contained in:
parent
7ac8a60c6f
commit
1bac74b9ae
1 changed files with 2 additions and 3 deletions
|
@ -52,7 +52,7 @@ class IdentityHandler(BaseHandler):
|
||||||
data = {}
|
data = {}
|
||||||
try:
|
try:
|
||||||
data = yield http_client.get_json(
|
data = yield http_client.get_json(
|
||||||
"http://%s%s" % (
|
"https://%s%s" % (
|
||||||
creds['id_server'],
|
creds['id_server'],
|
||||||
"/_matrix/identity/api/v1/3pid/getValidated3pid"
|
"/_matrix/identity/api/v1/3pid/getValidated3pid"
|
||||||
),
|
),
|
||||||
|
@ -73,8 +73,7 @@ class IdentityHandler(BaseHandler):
|
||||||
data = None
|
data = None
|
||||||
try:
|
try:
|
||||||
data = yield http_client.post_urlencoded_get_json(
|
data = yield http_client.post_urlencoded_get_json(
|
||||||
# XXX: Change when ID servers are all HTTPS
|
"https://%s%s" % (
|
||||||
"http://%s%s" % (
|
|
||||||
creds['id_server'], "/_matrix/identity/api/v1/3pid/bind"
|
creds['id_server'], "/_matrix/identity/api/v1/3pid/bind"
|
||||||
),
|
),
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue