mirror of
https://github.com/simple-login/app.git
synced 2025-02-25 00:03:03 +08:00
support 127.0.0.1 as well as localhost
This commit is contained in:
parent
5eb3f26286
commit
232d250186
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ def authorize():
|
|||
# check if redirect_uri is valid
|
||||
# allow localhost by default
|
||||
hostname, scheme = get_host_name_and_scheme(redirect_uri)
|
||||
if hostname != "localhost":
|
||||
if hostname != "localhost" and hostname != "127.0.0.1":
|
||||
if scheme != "https":
|
||||
return "Only https is supported", 400
|
||||
|
||||
|
|
Loading…
Reference in a new issue