Revert heroku app https upgrade fix
parent
df0b7afa50
commit
50c888f9a7
|
@ -25,7 +25,7 @@ def needs_https(url: str) -> bool:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
https_only = bool(os.getenv('HTTPS_ONLY', 0))
|
https_only = bool(os.getenv('HTTPS_ONLY', 0))
|
||||||
is_heroku = '.herokuapp.com' in url
|
is_heroku = url.endswith('.herokuapp.com')
|
||||||
is_http = url.startswith('http://')
|
is_http = url.startswith('http://')
|
||||||
|
|
||||||
return (is_heroku and is_http) or (https_only and is_http)
|
return (is_heroku and is_http) or (https_only and is_http)
|
||||||
|
|
Loading…
Reference in New Issue