Revert accidental commit

This commit is contained in:
David Baker 2017-04-26 11:43:16 +01:00
parent 81804909d3
commit 82ae0238f9
1 changed files with 4 additions and 4 deletions

View File

@ -84,7 +84,7 @@ class IdentityHandler(BaseHandler):
data = {} data = {}
try: try:
data = yield self.http_client.get_json( data = yield self.http_client.get_json(
"http://%s%s" % ( "https://%s%s" % (
id_server, id_server,
"/_matrix/identity/api/v1/3pid/getValidated3pid" "/_matrix/identity/api/v1/3pid/getValidated3pid"
), ),
@ -122,7 +122,7 @@ class IdentityHandler(BaseHandler):
try: try:
data = yield self.http_client.post_urlencoded_get_json( data = yield self.http_client.post_urlencoded_get_json(
"http://%s%s" % ( "https://%s%s" % (
id_server, "/_matrix/identity/api/v1/3pid/bind" id_server, "/_matrix/identity/api/v1/3pid/bind"
), ),
{ {
@ -155,7 +155,7 @@ class IdentityHandler(BaseHandler):
try: try:
data = yield self.http_client.post_json_get_json( data = yield self.http_client.post_json_get_json(
"http://%s%s" % ( "https://%s%s" % (
id_server, id_server,
"/_matrix/identity/api/v1/validate/email/requestToken" "/_matrix/identity/api/v1/validate/email/requestToken"
), ),
@ -192,7 +192,7 @@ class IdentityHandler(BaseHandler):
try: try:
data = yield self.http_client.post_json_get_json( data = yield self.http_client.post_json_get_json(
"http://%s%s" % ( "https://%s%s" % (
id_server, id_server,
"/_matrix/identity/api/v1/validate/msisdn/requestToken" "/_matrix/identity/api/v1/validate/msisdn/requestToken"
), ),