Fix app registration - toot - Unnamed repository; edit this file 'description' … | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 06a68d41429e76fd7197d5dfdeb82a458728dde2 | |
parent 9787954a3287ea2cf9a7c1a1c975953d00d52af0 | |
Author: Ivan Habunek <[email protected]> | |
Date: Sat, 30 Dec 2017 17:54:22 +0100 | |
Fix app registration | |
Was using http instead of https. | |
Diffstat: | |
toot/api.py | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/toot/api.py b/toot/api.py | |
@@ -17,7 +17,7 @@ def _account_action(app, user, account, action): | |
def create_app(domain): | |
- url = 'http://{}/api/v1/apps'.format(domain) | |
+ url = 'https://{}/api/v1/apps'.format(domain) | |
data = { | |
'client_name': CLIENT_NAME, |